码迷,mamicode.com
首页 > 其他好文 > 详细

kvm虚拟机端口映射

时间:2017-11-28 16:38:49      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:nat iptables

在kvm中新建的虚拟机使用NAT网络上网。需要把端口映射到宿主机上,通过本地的iptables即可实现。


添加相应的iptables策略:

  1. 添加filter 表的forward链

    iptables -I FORWARD -m state -d 192.168.122.0/24 --state NEW,RELATED,ESTABLISHED -j ACCEPT

  2. 添加nat 表的prerouting链

    iptables -t nat -I PREROUTING -p tcp --dport 1433 -j DNAT --to-destination 192.168.122.242:1433


kvm虚拟机端口映射

标签:nat iptables

原文地址:http://blog.51cto.com/ting2junshui/2045143

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