실패를 시뮬레이트하기 위해 특정 리소스로 향하는 트래픽을 존재하지 않는 주소로 보내기 위해 null 경로를 추가하려고합니다.
PS C:\Users\Owner> route print
===========================================================================
Interface List
10...00 05 9a 3c 7a 00 ......Cisco AnyConnect Secure Mobility Client Virtual Miniport Adapter for Windows x64
29...02 00 4c 4f 4f 50 ......Npcap Loopback Adapter
25...00 ff d9 46 d7 15 ......VMware SSL VPN-Plus Client Adapter
23...34 02 86 ef 17 3e ......Bluetooth Device (Personal Area Network) #2
22...34 02 86 ef 17 3b ......Microsoft Wi-Fi Direct Virtual Adapter #2
21...36 02 86 ef 17 3a ......Microsoft Hosted Network Virtual Adapter #2
19...34 02 86 ef 17 3a ......Intel(R) Dual Band Wireless-AC 7265 #2
18...34 e6 d7 83 b2 be ......Intel(R) Ethernet Connection (3) I218-LM #2
15...00 05 9a 3c 78 00 ......Cisco Systems VPN Adapter for 64-bit Windows
16...00 50 56 c0 00 01 ......VMware Virtual Ethernet Adapter for VMnet1
17...00 50 56 c0 00 08 ......VMware Virtual Ethernet Adapter for VMnet8
1...........................Software Loopback Interface 1
13...00 00 00 00 00 00 00 e0 Microsoft ISATAP Adapter #3
7...00 00 00 00 00 00 00 e0 Teredo Tunneling Pseudo-Interface
12...00 00 00 00 00 00 00 e0 Microsoft ISATAP Adapter #2
11...00 00 00 00 00 00 00 e0 Microsoft ISATAP Adapter #4
14...00 00 00 00 00 00 00 e0 Microsoft ISATAP Adapter #6
26...00 00 00 00 00 00 00 e0 Microsoft ISATAP Adapter #7
30...00 00 00 00 00 00 00 e0 Microsoft ISATAP Adapter #10
===========================================================================
IPv4 Route Table
===========================================================================
Active Routes:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 192.168.1.1 192.168.1.9 10
172.24.16.0 255.255.252.0 192.168.237.1 192.168.237.8 2
172.24.32.0 255.255.252.0 192.168.237.1 192.168.237.8 2
172.24.48.0 255.255.252.0 192.168.237.1 192.168.237.8 2
172.24.64.0 255.255.252.0 192.168.237.1 192.168.237.8 2
172.24.96.0 255.255.252.0 192.168.237.1 192.168.237.8 2
172.24.112.0 255.255.252.0 192.168.237.1 192.168.237.8 2
172.24.120.0 255.255.252.0 192.168.237.1 192.168.237.8 2
172.24.128.0 255.255.252.0 192.168.237.1 192.168.237.8 2
192.168.1.1 255.255.255.255 On-link 192.168.1.9 11
212.64.157.210 255.255.255.255 192.168.1.1 192.168.1.9 11
===========================================================================
Persistent Routes:
None
IPv6 Route Table
===========================================================================
Active Routes:
If Metric Network Destination Gateway
10 11 ::/0 On-link
10 266 fe80::/64 On-link
===========================================================================
Persistent Routes:
None
이제 172.24.48.10/32 네트워크로 향하는 트래픽을 로컬 네트워크의 존재하지 않는 IP로 리디렉션하는 경로를 추가하고 있습니다
PS C:\Windows\system32> route add 172.24.48.10 mask 255.255.255.255
192.168.100.245 metric 1
OK!
위의 특정 주소를 여전히 핑하고 ip로부터 응답을받을 수 있으므로 이것은 작동하지 않는 것 같습니다. 내가 여기서하려고하는 일과이 접근 방식이 잘못되는 것을 달성하도록 도와 줄 수 있습니까? 감사.
호스트의 경로 (예 : 255 개의 서브넷 마스크)는 서버와 동일한 하위 네트워크에있는 IP를 가리켜 야합니다. 죽었지 만 로컬 링크에있는 IP를 사용해보십시오.
—
Twisty Impersonator