J
JohnByrne999
Guest
Hi,
I'm trying to resolve the problem of not being able to have 2 interfaces enabled at the same time without having to shut one down to force traffic to that particular interface.
Let me explain further:
I have network 172.16.0.0 255.240.0.0 on interface #7 and network 192.168.1.0 255.255.255.0 on interface #4.
I want to send traffic going to 172.16.41.1 out through interface #7 and traffic bound for 192.168.1.97 going to interface #4.
However, I'm having a few problems (see below for log of commands and their results).
1) the route add command: route add 172.16.0.0 mask 255.240.0.0 172.16.41.1 metric 1 if 7
doesn't work. Not only does it not work. It doesn't show up in route print (See below)
I didn't issue any other commands because the default static route should be fine for all other traffic.
Could someone help me?
Thank you,
John
P.S. I got the mask wrong for the first route add command... So I issued it again at again with the correct mask and put this at the bottom of the log after the initial log.
Microsoft Windows [Version 10.0.17134.523]
(c) 2018 Microsoft Corporation. All rights reserved.
C:\Windows\system32>route print
===========================================================================
Interface List
20...00 1b 21 5e aa 6d ......Intel(R) Gigabit ET Quad Port Server Adapter
16...00 1b 21 5e aa 68 ......Intel(R) Gigabit ET Quad Port Server Adapter #3
18...04 92 26 bf 51 b9 ......Intel(R) Ethernet Connection (7) I219-V
10...64 5d 86 82 41 50 ......Intel(R) Wireless-AC 9560
29...64 5d 86 82 41 51 ......Microsoft Wi-Fi Direct Virtual Adapter
30...00 1b 21 5e aa 69 ......Intel(R) Gigabit ET Quad Port Server Adapter #4
1...........................Software Loopback Interface 1
3...ce 15 8d ef 21 3c ......Hyper-V Virtual Ethernet Adapter #3
===========================================================================
IPv4 Route Table
===========================================================================
Active Routes:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 192.168.1.98 192.168.1.17 35
127.0.0.0 255.0.0.0 On-link 127.0.0.1 331
127.0.0.1 255.255.255.255 On-link 127.0.0.1 331
127.255.255.255 255.255.255.255 On-link 127.0.0.1 331
172.25.188.240 255.255.255.240 On-link 172.25.188.241 5256
172.25.188.241 255.255.255.255 On-link 172.25.188.241 5256
172.25.188.255 255.255.255.255 On-link 172.25.188.241 5256
192.168.1.0 255.255.255.0 On-link 192.168.1.17 291
192.168.1.17 255.255.255.255 On-link 192.168.1.17 291
192.168.1.255 255.255.255.255 On-link 192.168.1.17 291
224.0.0.0 240.0.0.0 On-link 127.0.0.1 331
224.0.0.0 240.0.0.0 On-link 172.25.188.241 5256
224.0.0.0 240.0.0.0 On-link 192.168.1.17 291
255.255.255.255 255.255.255.255 On-link 127.0.0.1 331
255.255.255.255 255.255.255.255 On-link 172.25.188.241 5256
255.255.255.255 255.255.255.255 On-link 192.168.1.17 291
===========================================================================
Persistent Routes:
None
IPv6 Route Table
===========================================================================
Active Routes:
If Metric Network Destination Gateway
1 331 ::1/128 On-link
3 5256 fe80::/64 On-link
3 5256 fe80::e578:6c80:774f:dc70/128
On-link
1 331 ff00::/8 On-link
3 5256 ff00::/8 On-link
===========================================================================
Persistent Routes:
None
C:\Windows\system32>route delete 0.0.0.0
OK!
C:\Windows\system32>route add 0.0.0.0 mask 0.0.0.0 192.168.1.98 metric 10000 if 192.168.1.17
route: bad metric value 10000
C:\Windows\system32>route add 0.0.0.0 mask 0.0.0.0 192.168.1.98 metric 6000 if 192.168.1.17
The route addition failed: The system cannot find the file specified.
C:\Windows\system32>route add 0.0.0.0 mask 0.0.0.0 192.168.1.98 metric 6000 if 30
OK!
C:\Windows\system32>route print
===========================================================================
Interface List
20...00 1b 21 5e aa 6d ......Intel(R) Gigabit ET Quad Port Server Adapter
16...00 1b 21 5e aa 68 ......Intel(R) Gigabit ET Quad Port Server Adapter #3
18...04 92 26 bf 51 b9 ......Intel(R) Ethernet Connection (7) I219-V
10...64 5d 86 82 41 50 ......Intel(R) Wireless-AC 9560
29...64 5d 86 82 41 51 ......Microsoft Wi-Fi Direct Virtual Adapter
6...66 5d 86 82 41 50 ......Microsoft Wi-Fi Direct Virtual Adapter #2
30...00 1b 21 5e aa 69 ......Intel(R) Gigabit ET Quad Port Server Adapter #4
1...........................Software Loopback Interface 1
3...ce 15 8d ef 21 3c ......Hyper-V Virtual Ethernet Adapter #3
===========================================================================
IPv4 Route Table
===========================================================================
Active Routes:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 192.168.1.98 192.168.1.17 6035
127.0.0.0 255.0.0.0 On-link 127.0.0.1 331
127.0.0.1 255.255.255.255 On-link 127.0.0.1 331
127.255.255.255 255.255.255.255 On-link 127.0.0.1 331
172.25.188.240 255.255.255.240 On-link 172.25.188.241 5256
172.25.188.241 255.255.255.255 On-link 172.25.188.241 5256
172.25.188.255 255.255.255.255 On-link 172.25.188.241 5256
192.168.1.0 255.255.255.0 On-link 192.168.1.17 291
192.168.1.17 255.255.255.255 On-link 192.168.1.17 291
192.168.1.255 255.255.255.255 On-link 192.168.1.17 291
224.0.0.0 240.0.0.0 On-link 127.0.0.1 331
224.0.0.0 240.0.0.0 On-link 172.25.188.241 5256
224.0.0.0 240.0.0.0 On-link 192.168.1.17 291
255.255.255.255 255.255.255.255 On-link 127.0.0.1 331
255.255.255.255 255.255.255.255 On-link 172.25.188.241 5256
255.255.255.255 255.255.255.255 On-link 192.168.1.17 291
===========================================================================
Persistent Routes:
None
IPv6 Route Table
===========================================================================
Active Routes:
If Metric Network Destination Gateway
1 331 ::1/128 On-link
3 5256 fe80::/64 On-link
3 5256 fe80::e578:6c80:774f:dc70/128
On-link
1 331 ff00::/8 On-link
3 5256 ff00::/8 On-link
===========================================================================
Persistent Routes:
None
C:\Windows\system32>route add 172.16.0.0 mask 255.255.0.0 172.16.42.1 metric 35 if 18
OK!
C:\Windows\system32>route print
===========================================================================
Interface List
20...00 1b 21 5e aa 6d ......Intel(R) Gigabit ET Quad Port Server Adapter
16...00 1b 21 5e aa 68 ......Intel(R) Gigabit ET Quad Port Server Adapter #3
18...04 92 26 bf 51 b9 ......Intel(R) Ethernet Connection (7) I219-V
10...64 5d 86 82 41 50 ......Intel(R) Wireless-AC 9560
29...64 5d 86 82 41 51 ......Microsoft Wi-Fi Direct Virtual Adapter
6...66 5d 86 82 41 50 ......Microsoft Wi-Fi Direct Virtual Adapter #2
30...00 1b 21 5e aa 69 ......Intel(R) Gigabit ET Quad Port Server Adapter #4
1...........................Software Loopback Interface 1
3...ce 15 8d ef 21 3c ......Hyper-V Virtual Ethernet Adapter #3
===========================================================================
IPv4 Route Table
===========================================================================
Active Routes:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 192.168.1.98 192.168.1.17 6035
127.0.0.0 255.0.0.0 On-link 127.0.0.1 331
127.0.0.1 255.255.255.255 On-link 127.0.0.1 331
127.255.255.255 255.255.255.255 On-link 127.0.0.1 331
172.25.188.240 255.255.255.240 On-link 172.25.188.241 5256
172.25.188.241 255.255.255.255 On-link 172.25.188.241 5256
172.25.188.255 255.255.255.255 On-link 172.25.188.241 5256
192.168.1.0 255.255.255.0 On-link 192.168.1.17 291
192.168.1.17 255.255.255.255 On-link 192.168.1.17 291
192.168.1.255 255.255.255.255 On-link 192.168.1.17 291
224.0.0.0 240.0.0.0 On-link 127.0.0.1 331
224.0.0.0 240.0.0.0 On-link 172.25.188.241 5256
224.0.0.0 240.0.0.0 On-link 192.168.1.17 291
255.255.255.255 255.255.255.255 On-link 127.0.0.1 331
255.255.255.255 255.255.255.255 On-link 172.25.188.241 5256
255.255.255.255 255.255.255.255 On-link 192.168.1.17 291
===========================================================================
Persistent Routes:
None
IPv6 Route Table
===========================================================================
Active Routes:
If Metric Network Destination Gateway
1 331 ::1/128 On-link
3 5256 fe80::/64 On-link
3 5256 fe80::e578:6c80:774f:dc70/128
On-link
1 331 ff00::/8 On-link
3 5256 ff00::/8 On-link
===========================================================================
Persistent Routes:
None
C:\Windows\system32>ping 172.16.42.1
Pinging 172.16.42.1 with 32 bytes of data:
Request timed out.
Ping statistics for 172.16.42.1:
Packets: Sent = 1, Received = 0, Lost = 1 (100% loss),
Control-C
^C
C:\Windows\system32>ping 172.16.42.1
Pinging 172.16.42.1 with 32 bytes of data:
Request timed out.
Request timed out.
Request timed out.
Request timed out.
Ping statistics for 172.16.42.1:
Packets: Sent = 4, Received = 0, Lost = 4 (100% loss),
C:\Windows\system32>
------------------------------
C:\Windows\system32>route add 172.16.0.0 mask 255.240.0.0 172.16.42.1 metric 1 if 18
OK!
C:\Windows\system32>ping 172.16.42.1
Pinging 172.16.42.1 with 32 bytes of data:
Request timed out.
Ping statistics for 172.16.42.1:
Packets: Sent = 1, Received = 0, Lost = 1 (100% loss),
Control-C
^C
C:\Windows\system32>route print
===========================================================================
Interface List
20...00 1b 21 5e aa 6d ......Intel(R) Gigabit ET Quad Port Server Adapter
16...00 1b 21 5e aa 68 ......Intel(R) Gigabit ET Quad Port Server Adapter #3
18...04 92 26 bf 51 b9 ......Intel(R) Ethernet Connection (7) I219-V
10...64 5d 86 82 41 50 ......Intel(R) Wireless-AC 9560
29...64 5d 86 82 41 51 ......Microsoft Wi-Fi Direct Virtual Adapter
6...66 5d 86 82 41 50 ......Microsoft Wi-Fi Direct Virtual Adapter #2
30...00 1b 21 5e aa 69 ......Intel(R) Gigabit ET Quad Port Server Adapter #4
1...........................Software Loopback Interface 1
3...ce 15 8d ef 21 3c ......Hyper-V Virtual Ethernet Adapter #3
===========================================================================
IPv4 Route Table
===========================================================================
Active Routes:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 192.168.1.98 192.168.1.17 6035
127.0.0.0 255.0.0.0 On-link 127.0.0.1 331
127.0.0.1 255.255.255.255 On-link 127.0.0.1 331
127.255.255.255 255.255.255.255 On-link 127.0.0.1 331
172.25.188.240 255.255.255.240 On-link 172.25.188.241 5256
172.25.188.241 255.255.255.255 On-link 172.25.188.241 5256
172.25.188.255 255.255.255.255 On-link 172.25.188.241 5256
192.168.1.0 255.255.255.0 On-link 192.168.1.17 291
192.168.1.17 255.255.255.255 On-link 192.168.1.17 291
192.168.1.255 255.255.255.255 On-link 192.168.1.17 291
224.0.0.0 240.0.0.0 On-link 127.0.0.1 331
224.0.0.0 240.0.0.0 On-link 172.25.188.241 5256
224.0.0.0 240.0.0.0 On-link 192.168.1.17 291
255.255.255.255 255.255.255.255 On-link 127.0.0.1 331
255.255.255.255 255.255.255.255 On-link 172.25.188.241 5256
255.255.255.255 255.255.255.255 On-link 192.168.1.17 291
===========================================================================
Persistent Routes:
None
IPv6 Route Table
===========================================================================
Active Routes:
If Metric Network Destination Gateway
1 331 ::1/128 On-link
3 5256 fe80::/64 On-link
3 5256 fe80::e578:6c80:774f:dc70/128
On-link
1 331 ff00::/8 On-link
3 5256 ff00::/8 On-link
===========================================================================
Persistent Routes:
None
C:\Windows\system32>
Continue reading...
I'm trying to resolve the problem of not being able to have 2 interfaces enabled at the same time without having to shut one down to force traffic to that particular interface.
Let me explain further:
I have network 172.16.0.0 255.240.0.0 on interface #7 and network 192.168.1.0 255.255.255.0 on interface #4.
I want to send traffic going to 172.16.41.1 out through interface #7 and traffic bound for 192.168.1.97 going to interface #4.
However, I'm having a few problems (see below for log of commands and their results).
1) the route add command: route add 172.16.0.0 mask 255.240.0.0 172.16.41.1 metric 1 if 7
doesn't work. Not only does it not work. It doesn't show up in route print (See below)
I didn't issue any other commands because the default static route should be fine for all other traffic.
Could someone help me?
Thank you,
John
P.S. I got the mask wrong for the first route add command... So I issued it again at again with the correct mask and put this at the bottom of the log after the initial log.
Microsoft Windows [Version 10.0.17134.523]
(c) 2018 Microsoft Corporation. All rights reserved.
C:\Windows\system32>route print
===========================================================================
Interface List
20...00 1b 21 5e aa 6d ......Intel(R) Gigabit ET Quad Port Server Adapter
16...00 1b 21 5e aa 68 ......Intel(R) Gigabit ET Quad Port Server Adapter #3
18...04 92 26 bf 51 b9 ......Intel(R) Ethernet Connection (7) I219-V
10...64 5d 86 82 41 50 ......Intel(R) Wireless-AC 9560
29...64 5d 86 82 41 51 ......Microsoft Wi-Fi Direct Virtual Adapter
30...00 1b 21 5e aa 69 ......Intel(R) Gigabit ET Quad Port Server Adapter #4
1...........................Software Loopback Interface 1
3...ce 15 8d ef 21 3c ......Hyper-V Virtual Ethernet Adapter #3
===========================================================================
IPv4 Route Table
===========================================================================
Active Routes:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 192.168.1.98 192.168.1.17 35
127.0.0.0 255.0.0.0 On-link 127.0.0.1 331
127.0.0.1 255.255.255.255 On-link 127.0.0.1 331
127.255.255.255 255.255.255.255 On-link 127.0.0.1 331
172.25.188.240 255.255.255.240 On-link 172.25.188.241 5256
172.25.188.241 255.255.255.255 On-link 172.25.188.241 5256
172.25.188.255 255.255.255.255 On-link 172.25.188.241 5256
192.168.1.0 255.255.255.0 On-link 192.168.1.17 291
192.168.1.17 255.255.255.255 On-link 192.168.1.17 291
192.168.1.255 255.255.255.255 On-link 192.168.1.17 291
224.0.0.0 240.0.0.0 On-link 127.0.0.1 331
224.0.0.0 240.0.0.0 On-link 172.25.188.241 5256
224.0.0.0 240.0.0.0 On-link 192.168.1.17 291
255.255.255.255 255.255.255.255 On-link 127.0.0.1 331
255.255.255.255 255.255.255.255 On-link 172.25.188.241 5256
255.255.255.255 255.255.255.255 On-link 192.168.1.17 291
===========================================================================
Persistent Routes:
None
IPv6 Route Table
===========================================================================
Active Routes:
If Metric Network Destination Gateway
1 331 ::1/128 On-link
3 5256 fe80::/64 On-link
3 5256 fe80::e578:6c80:774f:dc70/128
On-link
1 331 ff00::/8 On-link
3 5256 ff00::/8 On-link
===========================================================================
Persistent Routes:
None
C:\Windows\system32>route delete 0.0.0.0
OK!
C:\Windows\system32>route add 0.0.0.0 mask 0.0.0.0 192.168.1.98 metric 10000 if 192.168.1.17
route: bad metric value 10000
C:\Windows\system32>route add 0.0.0.0 mask 0.0.0.0 192.168.1.98 metric 6000 if 192.168.1.17
The route addition failed: The system cannot find the file specified.
C:\Windows\system32>route add 0.0.0.0 mask 0.0.0.0 192.168.1.98 metric 6000 if 30
OK!
C:\Windows\system32>route print
===========================================================================
Interface List
20...00 1b 21 5e aa 6d ......Intel(R) Gigabit ET Quad Port Server Adapter
16...00 1b 21 5e aa 68 ......Intel(R) Gigabit ET Quad Port Server Adapter #3
18...04 92 26 bf 51 b9 ......Intel(R) Ethernet Connection (7) I219-V
10...64 5d 86 82 41 50 ......Intel(R) Wireless-AC 9560
29...64 5d 86 82 41 51 ......Microsoft Wi-Fi Direct Virtual Adapter
6...66 5d 86 82 41 50 ......Microsoft Wi-Fi Direct Virtual Adapter #2
30...00 1b 21 5e aa 69 ......Intel(R) Gigabit ET Quad Port Server Adapter #4
1...........................Software Loopback Interface 1
3...ce 15 8d ef 21 3c ......Hyper-V Virtual Ethernet Adapter #3
===========================================================================
IPv4 Route Table
===========================================================================
Active Routes:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 192.168.1.98 192.168.1.17 6035
127.0.0.0 255.0.0.0 On-link 127.0.0.1 331
127.0.0.1 255.255.255.255 On-link 127.0.0.1 331
127.255.255.255 255.255.255.255 On-link 127.0.0.1 331
172.25.188.240 255.255.255.240 On-link 172.25.188.241 5256
172.25.188.241 255.255.255.255 On-link 172.25.188.241 5256
172.25.188.255 255.255.255.255 On-link 172.25.188.241 5256
192.168.1.0 255.255.255.0 On-link 192.168.1.17 291
192.168.1.17 255.255.255.255 On-link 192.168.1.17 291
192.168.1.255 255.255.255.255 On-link 192.168.1.17 291
224.0.0.0 240.0.0.0 On-link 127.0.0.1 331
224.0.0.0 240.0.0.0 On-link 172.25.188.241 5256
224.0.0.0 240.0.0.0 On-link 192.168.1.17 291
255.255.255.255 255.255.255.255 On-link 127.0.0.1 331
255.255.255.255 255.255.255.255 On-link 172.25.188.241 5256
255.255.255.255 255.255.255.255 On-link 192.168.1.17 291
===========================================================================
Persistent Routes:
None
IPv6 Route Table
===========================================================================
Active Routes:
If Metric Network Destination Gateway
1 331 ::1/128 On-link
3 5256 fe80::/64 On-link
3 5256 fe80::e578:6c80:774f:dc70/128
On-link
1 331 ff00::/8 On-link
3 5256 ff00::/8 On-link
===========================================================================
Persistent Routes:
None
C:\Windows\system32>route add 172.16.0.0 mask 255.255.0.0 172.16.42.1 metric 35 if 18
OK!
C:\Windows\system32>route print
===========================================================================
Interface List
20...00 1b 21 5e aa 6d ......Intel(R) Gigabit ET Quad Port Server Adapter
16...00 1b 21 5e aa 68 ......Intel(R) Gigabit ET Quad Port Server Adapter #3
18...04 92 26 bf 51 b9 ......Intel(R) Ethernet Connection (7) I219-V
10...64 5d 86 82 41 50 ......Intel(R) Wireless-AC 9560
29...64 5d 86 82 41 51 ......Microsoft Wi-Fi Direct Virtual Adapter
6...66 5d 86 82 41 50 ......Microsoft Wi-Fi Direct Virtual Adapter #2
30...00 1b 21 5e aa 69 ......Intel(R) Gigabit ET Quad Port Server Adapter #4
1...........................Software Loopback Interface 1
3...ce 15 8d ef 21 3c ......Hyper-V Virtual Ethernet Adapter #3
===========================================================================
IPv4 Route Table
===========================================================================
Active Routes:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 192.168.1.98 192.168.1.17 6035
127.0.0.0 255.0.0.0 On-link 127.0.0.1 331
127.0.0.1 255.255.255.255 On-link 127.0.0.1 331
127.255.255.255 255.255.255.255 On-link 127.0.0.1 331
172.25.188.240 255.255.255.240 On-link 172.25.188.241 5256
172.25.188.241 255.255.255.255 On-link 172.25.188.241 5256
172.25.188.255 255.255.255.255 On-link 172.25.188.241 5256
192.168.1.0 255.255.255.0 On-link 192.168.1.17 291
192.168.1.17 255.255.255.255 On-link 192.168.1.17 291
192.168.1.255 255.255.255.255 On-link 192.168.1.17 291
224.0.0.0 240.0.0.0 On-link 127.0.0.1 331
224.0.0.0 240.0.0.0 On-link 172.25.188.241 5256
224.0.0.0 240.0.0.0 On-link 192.168.1.17 291
255.255.255.255 255.255.255.255 On-link 127.0.0.1 331
255.255.255.255 255.255.255.255 On-link 172.25.188.241 5256
255.255.255.255 255.255.255.255 On-link 192.168.1.17 291
===========================================================================
Persistent Routes:
None
IPv6 Route Table
===========================================================================
Active Routes:
If Metric Network Destination Gateway
1 331 ::1/128 On-link
3 5256 fe80::/64 On-link
3 5256 fe80::e578:6c80:774f:dc70/128
On-link
1 331 ff00::/8 On-link
3 5256 ff00::/8 On-link
===========================================================================
Persistent Routes:
None
C:\Windows\system32>ping 172.16.42.1
Pinging 172.16.42.1 with 32 bytes of data:
Request timed out.
Ping statistics for 172.16.42.1:
Packets: Sent = 1, Received = 0, Lost = 1 (100% loss),
Control-C
^C
C:\Windows\system32>ping 172.16.42.1
Pinging 172.16.42.1 with 32 bytes of data:
Request timed out.
Request timed out.
Request timed out.
Request timed out.
Ping statistics for 172.16.42.1:
Packets: Sent = 4, Received = 0, Lost = 4 (100% loss),
C:\Windows\system32>
------------------------------
C:\Windows\system32>route add 172.16.0.0 mask 255.240.0.0 172.16.42.1 metric 1 if 18
OK!
C:\Windows\system32>ping 172.16.42.1
Pinging 172.16.42.1 with 32 bytes of data:
Request timed out.
Ping statistics for 172.16.42.1:
Packets: Sent = 1, Received = 0, Lost = 1 (100% loss),
Control-C
^C
C:\Windows\system32>route print
===========================================================================
Interface List
20...00 1b 21 5e aa 6d ......Intel(R) Gigabit ET Quad Port Server Adapter
16...00 1b 21 5e aa 68 ......Intel(R) Gigabit ET Quad Port Server Adapter #3
18...04 92 26 bf 51 b9 ......Intel(R) Ethernet Connection (7) I219-V
10...64 5d 86 82 41 50 ......Intel(R) Wireless-AC 9560
29...64 5d 86 82 41 51 ......Microsoft Wi-Fi Direct Virtual Adapter
6...66 5d 86 82 41 50 ......Microsoft Wi-Fi Direct Virtual Adapter #2
30...00 1b 21 5e aa 69 ......Intel(R) Gigabit ET Quad Port Server Adapter #4
1...........................Software Loopback Interface 1
3...ce 15 8d ef 21 3c ......Hyper-V Virtual Ethernet Adapter #3
===========================================================================
IPv4 Route Table
===========================================================================
Active Routes:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 192.168.1.98 192.168.1.17 6035
127.0.0.0 255.0.0.0 On-link 127.0.0.1 331
127.0.0.1 255.255.255.255 On-link 127.0.0.1 331
127.255.255.255 255.255.255.255 On-link 127.0.0.1 331
172.25.188.240 255.255.255.240 On-link 172.25.188.241 5256
172.25.188.241 255.255.255.255 On-link 172.25.188.241 5256
172.25.188.255 255.255.255.255 On-link 172.25.188.241 5256
192.168.1.0 255.255.255.0 On-link 192.168.1.17 291
192.168.1.17 255.255.255.255 On-link 192.168.1.17 291
192.168.1.255 255.255.255.255 On-link 192.168.1.17 291
224.0.0.0 240.0.0.0 On-link 127.0.0.1 331
224.0.0.0 240.0.0.0 On-link 172.25.188.241 5256
224.0.0.0 240.0.0.0 On-link 192.168.1.17 291
255.255.255.255 255.255.255.255 On-link 127.0.0.1 331
255.255.255.255 255.255.255.255 On-link 172.25.188.241 5256
255.255.255.255 255.255.255.255 On-link 192.168.1.17 291
===========================================================================
Persistent Routes:
None
IPv6 Route Table
===========================================================================
Active Routes:
If Metric Network Destination Gateway
1 331 ::1/128 On-link
3 5256 fe80::/64 On-link
3 5256 fe80::e578:6c80:774f:dc70/128
On-link
1 331 ff00::/8 On-link
3 5256 ff00::/8 On-link
===========================================================================
Persistent Routes:
None
C:\Windows\system32>
Continue reading...