外網連接的端口要怎麼設置?我們一起看看吧。
外網口設置ip為222.123.123.20 設置默認路由到網關地址(222.123.123.1)。如果交換機不可配置,就用路由器啟dhcp服務,直接分配dns就可以了。
具體步驟:
ip route 0.0.0.0 0.0.0.0 222.123.123.1
int f0/1(外網口)
no shut
ip add 222.123.123.20 255.255.255.0
int f0/2(內網口)
no shut
ip add 192.168.1.1 255.255.255.0 (隨便的私有地址就行
) ip dhcp pool net(poolname)
network 192.168.1.0 255.255.255.0
dns-server 61.177.7.1
default-router 222.123.123.20
ip dhcp excluded-address 192.168.1.1(保留的地址范圍)