Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用以下规则丢弃 RST 数据包
iptables -A OUTPUT -p tcp --tcp-flags RST RST -j DROP
现在我想恢复RST包发送,怎么办?谢谢!
只需删除规则,事情就会恢复正常:
iptables -D OUTPUT -p tcp --tcp-flags RST -j DROP