(轉載)iptables 轉寄oracle連接埠

來源:互聯網
上載者:User

標籤:des   style   blog   http   io   ar   color   os   sp   

本文出自 “鄉丅亻” 部落格,請務必保留此出處http://shaowu.blog.51cto.com/627407/514909

 

項目組同事需要將SQL請求轉寄到另一台伺服器上,於是通過iptables實現此功能

[[email protected]1 ~]# echo 1 > proc/sys/net/ipv4/ip_forward[[email protected]-1 ~]# iptables -t nat -A PREROUTING -d 192.168.18.19 -p tcp --dport 1521 -j DNAT --to 192.168.4.74:1521[[email protected]-1 ~]# iptables -t nat -A POSTROUTING -d 192.168.4.74 -p tcp --dport 1521 -j SNAT --to 192.168.18.19

 

查看nat 規則:

[[email protected]1 ~]# iptables -L -n -t natChain PREROUTING (policy ACCEPT)target     prot opt source               destinationDNAT       tcp  --  0.0.0.0/0            192.168.18.19        tcp dpt:1521 to:192.168.4.74:1521Chain POSTROUTING (policy ACCEPT)target     prot opt source               destinationSNAT       tcp  --  0.0.0.0/0            192.168.4.74       tcp dpt:1521 to:192.168.18.19Chain OUTPUT (policy ACCEPT)target     prot opt source               destination

 

Telnet測試:

[[email protected]1 ~]# telnet 192.168.4.74 1521Trying 192.168.4.74...Connected to localhost (192.168.4.74).Escape character is ‘^]‘.

 

儲存iptables設定:

[[email protected]1 ~]# iptables-save >> /etc/sysconfig/iptables

 

(轉載)iptables 轉寄oracle連接埠

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.