質問編集履歴
1
リクエストされたことの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -69,3 +69,97 @@
|
|
69
69
|
以上のことを一通り行いました。
|
70
70
|
|
71
71
|
どなたかお分かりの方いらっしゃいましたらご教授頂きたいです。よろしくお願いいたします。
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
### 追記
|
76
|
+
|
77
|
+
```
|
78
|
+
|
79
|
+
# iptables -nvL
|
80
|
+
|
81
|
+
Chain INPUT (policy DROP 0 packets, 0 bytes)
|
82
|
+
|
83
|
+
pkts bytes target prot opt in out source destination
|
84
|
+
|
85
|
+
2131 114K ACCEPT all -- lo * 0.0.0.0/0 0.0.0.0/0
|
86
|
+
|
87
|
+
8110 1926K ACCEPT all -- * * 0.0.0.0/0 0.0.0.0/0 state RELATED,ESTABLISHED
|
88
|
+
|
89
|
+
0 0 DROP tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp flags:0x3F/0x00
|
90
|
+
|
91
|
+
0 0 DROP tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp flags:!0x17/0x02 state NEW
|
92
|
+
|
93
|
+
0 0 DROP tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp flags:0x3F/0x3F
|
94
|
+
|
95
|
+
7 472 ACCEPT icmp -- * * 0.0.0.0/0 0.0.0.0/0 icmptype 8 limit: up to 1/min burst 10 mode srcip htable-expire 120000
|
96
|
+
|
97
|
+
1 77 ACCEPT icmp -- * * 0.0.0.0/0 0.0.0.0/0
|
98
|
+
|
99
|
+
1 52 ACCEPT tcp -- * * 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpt:22 flags:0x17/0x02 limit: up to 1/min burst 10 mode srcip htable-expire 120000
|
100
|
+
|
101
|
+
44 3968 ACCEPT tcp -- * * 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpt:80
|
102
|
+
|
103
|
+
9 464 ACCEPT tcp -- * * 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpt:443
|
104
|
+
|
105
|
+
0 0 ACCEPT udp -- * * 0.0.0.0/0 0.0.0.0/0 state NEW udp dpt:443
|
106
|
+
|
107
|
+
0 0 ACCEPT tcp -- * * 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpt:7080
|
108
|
+
|
109
|
+
17 700 REJECT all -- * * 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibited
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
Chain FORWARD (policy DROP 0 packets, 0 bytes)
|
114
|
+
|
115
|
+
pkts bytes target prot opt in out source destination
|
116
|
+
|
117
|
+
0 0 REJECT all -- * * 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibited
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
Chain OUTPUT (policy ACCEPT 10669 packets, 905K bytes)
|
122
|
+
|
123
|
+
pkts bytes target prot opt in out source destination
|
124
|
+
|
125
|
+
```
|
126
|
+
|
127
|
+
---
|
128
|
+
|
129
|
+
```
|
130
|
+
|
131
|
+
# service iptables stop
|
132
|
+
|
133
|
+
Redirecting to /bin/systemctl stop iptables.service
|
134
|
+
|
135
|
+
|
136
|
+
|
137
|
+
C:\PortQryV2>portqry -n 35.xxx.xx.xxx -p udp -e 443
|
138
|
+
|
139
|
+
|
140
|
+
|
141
|
+
Querying target system called:
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
35.xxx.xx.xxx
|
146
|
+
|
147
|
+
|
148
|
+
|
149
|
+
Attempting to resolve IP address to a name...
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
IP address resolved to myserver.work
|
156
|
+
|
157
|
+
|
158
|
+
|
159
|
+
querying...
|
160
|
+
|
161
|
+
|
162
|
+
|
163
|
+
UDP port 443 (https service): LISTENING or FILTERED
|
164
|
+
|
165
|
+
```
|