過去習慣每臺服務器都有外網IP,等服務器數量增多以後有所收斂。迎面而來的須要就是:服務好一個大內網。 mysql
NAT網關,一般用iptables實現,但性能不好不適合用於生產環境。可經過硬件設備或小米開源的dsnat完成。 git
端口映射的需求也常有,經過也是用iptables實現。但是iptables過重,性能是個大問題,且每次更新都須要重啓。 github
此時,咱們須要一個工具來實現端口映射。若是純粹是HTTP協議,那麼直接用Nginx便可。像MySQL、MongoDB之類則不適用。Google一翻,答案知曉:redir 、socat 。 sql
其中 redir 只支持TCP協議,但使用很是簡單。好比將外網的2669端口映射對內網1臺MySQL服務器,一鍵搞定: shell
redir --lport=2669 --caddr=10.58.66.32 --cport=3306
還有一點高級功能就去自行查閱幫助吧。 服務器
socat則更強大,支持ipv四、ipv六、tcp、udp、unix-socks、socket等等了。出於「The simpler the better」的觀念,恭喜redir入圍! app
若是映射量比較大,須要易維護、搞攻擊,就必須想到xinted了。配置 /etc/xinetd.d/mysql-portmap 以下: socket
service mysql-portmap { id = 1 disable = no type = UNLISTED socket_type = stream protocol = tcp wait = no redirect = 10.33.66.88 3306 bind = 183.68.36.138 port = 2669 user = nobody group = nobody flags = NODELAY KEEPALIVE NOLIBWRAP IPv4 log_type = FILE /data/log/xinetd/tcp-portmap.log cps = 100 30 }
每一個映射能夠有獨立配置文件來管理,修改只須要reload便可!當受到攻擊時,在系統日誌 /var/log/messages 中會看到: tcp
xinetd[26269]: Starting reconfiguration
xinetd[26269]: Swapping defaults
xinetd[26269]: readjusting service rsync
xinetd[26269]: service mysql-portmap deactivated
xinetd[26269]: mysql-portmap: svc_release with 0 count
xinetd[26269]: Reconfigured: new=1 old=1 dropped=1 (services)
xinetd[26269]: Deactivating service mysql-portmap due to excessive incoming connections. Restarting in 10 seconds.
xinetd[26269]: Activating service mysql-portmap
用xinetd來管理端口映射簡單太完美了! 工具