我試圖完成以下設置:嘗試設置靜態IP塊與ATT Uverse和IP直通華碩路由器
NVG599 <>華碩RT-AC88U <>靜態設備
我有一個Ubuntu運行Apache的服務器已被配置爲使用內部地址192.xxx以及其中一個靜態IP地址。我知道Apache正在運行/收聽/工作。如果我瀏覽到內部地址,我會得到默認的Apache頁面。 Ubuntu防火牆已禁用。我實際上有一個指向此IP地址的域設置'http://thelavender.net'
通常,ATT RG將處理第二個子網/靜態IP塊。我無法弄清楚的是,華碩如何處理這些問題,現在它基本上承擔了所有的路由任務。
ATT RG有一個級聯路由器選項,我看到一些人在談論使用它。它是否正確?
編輯
回想起來,我覺得1:1 NAT是什麼,我真的需要在這裏正確嗎?
EDIT 2
我嘗試使用的東西沿着這行:
#!/bin/sh
#
# to restore this configuration, it needs to be saved to /jffs/scripts/nat-start
# on the router.
#
ifconfig eth0:0 WanIP1 netmask 255.255.255.248 up
iptables -t nat -A PREROUTING -i eth0 -d WanIP1 -j DNAT --to-destination 192.168.1.10
iptables -t nat -I POSTROUTING -s 192.168.1.10 -j SNAT --to WanIP1
#
ifconfig eth0:1 WanIP2 netmask 255.255.255.248 up
iptables -t nat -A PREROUTING -i eth0 -d WanIP2 -j DNAT --to-destination 192.168.1.11
iptables -t nat -I POSTROUTING -s 192.168.1.11 -j SNAT --to WanIP2
#
ifconfig eth0:2 WanIP3 netmask 255.255.255.248 up
iptables -t nat -A PREROUTING -i eth0 -d WanIP3 -j DNAT --to-destination 192.168.1.12
iptables -t nat -I POSTROUTING -s 192.168.1.12 -j SNAT --to WanIP3
#
# Port forwards, in case the webui doesn't work, but i think it will. uncomment below if needed.
# iptables -A FORWARD -p tcp --dport 80 -d 192.168.1.10 -j ACCEPT
我只嘗試了第一組,並把這個在NAT啓動腳本梅林回暖。當我這樣做並重新啓動路由器時,它拒絕從RG獲取WAN IP。
任何幫助,這將不勝感激。
編輯
否決,但沒有解釋爲什麼。