zabbix和iptables的nat表結合使用

 

A 機器要去訪問C機器,可是沒法直接訪問到
A能夠訪問到B機器,B機器能夠訪問到C機器
這時候就能夠再B機器設置nat,讓A機器訪問C機器bash


正好工做中zabbix server要監控2個http地址,缺沒法直接訪問
分別是jsp

http://182.120.184.66:8066/DHWeb/index.jsp
http://182.130.164.98:8321/DHVideo/index.jsp

  

在B機器上作以下nattcp

iptables   -t nat -A   PREROUTING   -d    10.0.2.11    -p tcp --dport    58066   -j DNAT --to-destination 182.120.184.66:8066
iptables -t nat -A POSTROUTING -d  182.120.184.66 -p tcp --dport 8066 -j SNAT --to  10.0.2.11

iptables   -t nat -A   PREROUTING   -d    10.0.2.11    -p tcp --dport    58321   -j DNAT --to-destination 182.130.164.98:8321
iptables -t nat -A POSTROUTING -d  182.130.164.98 -p tcp --dport 8321 -j SNAT --to  10.0.2.11
/etc/init.d/iptables save

  

 

而後A機器去監控下面2個地址便可ide

http://10.0.2.11:58066/DHWeb/index.jsp
http://10.0.2.11:58321/DHVideo/index.jsp

  

監控截圖server

相關文章
相關標籤/搜索