当前位置:网站首页>Iptables implementation under the network limited (NTP) synchronization time custom port
Iptables implementation under the network limited (NTP) synchronization time custom port
2022-08-05 07:59:00 【Wangzai_Milk】
# requirementsntpdate 192.168.1.1:123(192.168.1.1:666->10.0.0.1->123)ntpdaete cannot specify the port, the ntpd synchronization is 192.168.1.1:123, but because 123 cannot be accessed normally, the machine has mapped port 666 to port 123 of the back-end ntp server# Solution (time synchronization server, client configuration is as follows), because REDIRECT will access the local machine or access the port in the packet header of the host with this machine as the gateway machine from the original targetThe port is replaced with the specified target port, which does not apply in this case, only the local port is forwarded to another port on the local machine# Since this is the local traffic forwarding configuration, it does not belong to other traffic forwarded to the local machine, so configuring PREROUTING DNAT has no effect, because it will not match the rules here at all# Method 1, POSTROUTING cannot configure DNATiptables -t nat -I OUTPUT -p udp -d 192.168.1.1 --dport 123 -j DNAT --to 192.168.1.1:666# Verification (because there is no actual NTP server in the backend, it will not pass here, we only need to look at the iptables rules)[[email protected] ~]# ntpdate 192.168.1.13 Aug 11:01:34 ntpdate[1734]: no server suitable for synchronization found# iptables rule verification, through pkts, bytes here, it can be seen that the rule takes effect, and the native ntpdate 192.168.1.1:123 -> ntpdate 192.168.1.1:6666 -> (this layer of network equipment is implemented)mapping) ntpdate 10.0.0.1:123[[email protected] ~]# iptables -t nat -nvLspan>Chain OUTPUT (policy ACCEPT 15 packets, 976 bytes)pkts bytes target prot opt in out source destination1 76 DNAT udp -- * * 0.0.0.0/0 192.168.1.1 udp dpt:123 to:192.168.1.1:666 边栏推荐
猜你喜欢
随机推荐
链表专项之环形链表
TRACE32——SMP多核调试
嵌入式系统:基本定时器
Redis 全套学习笔记.pdf,太全了
TRACE32——Go.direct
星座理想情人
Long-term recruitment embedded development-Shenzhen Baoan
Chapter3、色调映射
Flink Learning 10: Use idea to write WordCount and package and run
Illegal key size 报错问题
D2--FPGA SPI interface communication2022-08-03
moment的使用
3555. 二叉树
每一个女孩曾经都是一个没有泪的天使
The magic weapon for small entrepreneurs!
环网冗余式CAN/光纤转换器 CAN总线转光纤转换器中继集线器hub光端机
TRACE32——List源代码查看
微信 小程序 之PC端 不支持 wx.previewMedia 方法 故用自定义轮播图进行 模拟照片视频的播放
SVG Star Wars Style Toggle Toggle Button
TRACE32——加载符号表信息用于调试









