Question : Cisco 877 Router FTP Issue

Hi,

I am unable to access my FTP site from outside my network. I had done the NAT translations etc and as far as i can see FTP is allowed and the FTP port 21 is open on my firewall.

When connecting I get an error 425 Can't open data connection

Any help would be much appreciated.

Thanks.

Answer : Cisco 877 Router FTP Issue

look at this
http://www.sommarskog.se/share_data.html

Also, if you can make it a function instead of a SP, you can return a table variable.

declare @tablename sysname
declare @colname sysname

select top 1 @tablename = tablename, @colname = ColumnName FROM dbo.TestTableList()
select @tablename, @colname
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
CREATE FUNCTION TestTableList ( 
) RETURNS @TableList TABLE (
  ID INT IDENTITY(1, 1),
  TableName SYSNAME,
  ColumnName SYSNAME
) AS BEGIN  
	INSERT INTO @TableList
	SELECT TABLE_NAME, COLUMN_NAME
	FROM INFORMATION_SCHEMA.COLUMNS
	
	RETURN 
END
Random Solutions  
 
programming4us programming4us