码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu通过iptables配置 ip 代理转发

时间:2020-07-10 13:02:43      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:etc   tin   list   proc   ipv4   sbin   tab   out   bin   

开启 ip 代理转发

临时开启 ip 代理转发

# 执行该命令后立即生效,但是重启后会失效
echo 1 | sudo tee /proc/sys/net/ipv4/ip_forward

永久开启 ip 代理转发

# 为适配不同系统,先删除后添加
sudo sed -i ‘/net.ipv4.ip_forward/d‘ /etc/sysctl.conf
echo "net.ipv4.ip_forward=1" | sudo tee -a /etc/sysctl.conf

# 使配置立即生效,否则要重启
sudo sysctl -p

通过iptables配置端口转发

# 添加iptables规则
iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8080

# ubuntu
/usr/sbin/netfilter-persistent save

其他iptables操作

# 列出nat的规则
sudo iptables -t nat --list

# 清除一条规则,1为numbers
sudo iptables -t nat -D PREROUTING 1  

# 清除nat所有规则
 iptables -t nat -F ;iptables -t nat -X ;

Ubuntu通过iptables配置 ip 代理转发

标签:etc   tin   list   proc   ipv4   sbin   tab   out   bin   

原文地址:https://www.cnblogs.com/testopsfeng/p/13278570.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!