CentOS 7 iptables 将 SSH 数据包标记为无效 - GCloud

CentOS 7 iptables 将 SSH 数据包标记为无效 - GCloud

因此,我决定尝试使用 GCloud 来托管我的一些小型项目。但是,当我在服务器上配置 iptables 时,它会将 SSH 数据包标记为无效。我不知道是我做错了什么,还是问题出在 Google 方面。

IPTables 列表

来自 IPTables 的日志消息

Jan 14 18:26:04 ************ kernel: IPTables-Dropped: IN=eth0 OUT= MAC=42:01:0a:a6:00:03:42:01:0a:a6:00:01:08:00 SRC=82.102.20.179 DST=10.166.0.3 LEN=120 TOS=0x00 PREC=0x00 TTL=111 ID=6913 DF PROTO=TCP SPT=44759 DPT=22 WINDOW=1021 RES=0x00 ACK PSH URGP=0



327 39548 LOG        all  --  *      *       0.0.0.0/0            0.0.0.0/0            ctstate INVALID LOG flags 0 level 4 prefix "IPTables-Dropped: "

编辑我正在尝试添加以下规则。

sudo iptables -t mangle -A PREROUTING -m conntrack --ctstate INVALID -j DROP

Iptables -S 输出:

-P INPUT ACCEPT
-P FORWARD ACCEPT
-P OUTPUT ACCEPT

相关内容