#1 2008-09-22 11:19:34
- yusongming
- 新生
- 註冊日期: 2008-09-22
- 文章數: 1
- 目前積分 : 0
請問有關外部連入的問題
我的機子是wl-500gx,我有安裝sctcs和SSH,在內網都可以正常連線使用,BT也可以正常下載,可是從外部網路卻無法進行SSH連線,或開啟sctcs網頁,看前面的文章好像是設定防火牆就可以了,我的防火牆設定是這樣,第一段是開啟SSH對外的port,第二段是bt,第三段是bt對外的port,因為我的程式碼主要都是參考各位大大的教學,不知道是不是有地方設定錯誤,還是缺少什麼呢。
還是說跟我有開啟內部的虛擬伺服器有關???好像虛擬伺服器也是同樣的功能,是否會相衝呢?麻煩各位指正一下 ,小弟拜謝
#!/bin/sh
iptables -D INPUT -j DROP
# Port 22 used for SSH server
iptables -A INPUT -p tcp --dport 22 -j ACCEPT
iptables -t nat -A PREROUTING -i $1 -p tcp --dport 22 -j DNAT --to-destination $4:22
iptables -A INPUT -j DROP
# Port 2701 to 2706 for SCTCS of BT
iptables -A INPUT -p tcp --dport 2701:2706 -j ACCEPT
iptables -t nat -A PREROUTING -i vlan1 -p tcp --dport 2701:2706 -j DNAT --to-desination $4:2706
# Port 176 used for 9999 port
iptables -A INPUT -p tcp --dport 9999 -j ACCEPT
iptables -t nat -A PREROUTING -i $1 -p tcp --dport 9999 -j DNAT --to-destination $4:176
iptables -A INPUT -j DROP
離線