LoginSignup
1
2

More than 5 years have passed since last update.

linux > iptables > UDP > ポート6000への通信とその応答を通す

Last updated at Posted at 2015-11-12
動作確認
CentOS 6.5

ポート6000に来るUDP通信を通して、その応答も通したい。

参考: SO

/etc/sysconfig/iptablesに以下を加える。

# for line monitor UDP
-A INPUT -p udp --dport 6000 -j ACCEPT
-A OUTPUT -p udp --dport 6000 -j ACCEPT
# service iptables restart
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2