首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

Redirect port from 8080 to 80 in linux server(一)

2013-10-14 
Redirect port from 8080 to 80 in linux server(1)iptables -t nat -A PREROUTING -p tcp --dport 80 -j

Redirect port from 8080 to 80 in linux server(1)

iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8080

查看配置是否成功
# iptables -t nat -L


Chain PREROUTING (policy ACCEPT)
target     prot opt source               destination
REDIRECT   tcp  --  anywhere             anywhere            tcp dpt:http redir ports 8080

记住最后要save
iptables-save

移除重定向
# iptables -t nat -D PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8080

热点排行