Guest User

Untitled

a guest
Nov 5th, 2025
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.24 KB | None | 0 0
  1. [root@native_zone ~]# netstat -nr
  2.  
  3. Routing Table: IPv4
  4.   Destination            Gateway          Flags  Ref     Use     Interface
  5. -------------------- -------------------- ----- ----- ---------- ---------
  6. 10.181.18.1          149.62.183.25        UGH       2      19656 net3      
  7. 127.0.0.1            127.0.0.1            UH        2         92 lo0      
  8. 149.62.183.24        149.62.183.26        U         3          1 net3
  9.  
  10. [root@native_zone ~]# ping 149.62.183.25
  11. 149.62.183.25 is alive
  12. [root@native_zone ~]# ping 10.181.18.1
  13. 10.181.18.1 is alive
  14. [root@native_zone ~]# route get 10.181.18.1
  15.    route to: 10.181.18.1
  16. destination: 10.181.18.1
  17.        mask: 255.255.255.255
  18.     gateway: 149.62.183.25
  19.   interface: net3
  20.       flags: <UP,GATEWAY,HOST,DONE,STATIC>
  21.  recvpipe  sendpipe  ssthresh    rtt,ms rttvar,ms  hopcount      mtu     expire
  22.        0         0         0         0         0         0      1500         0
  23. [root@native_zone ~]# route add default 10.181.18.1
  24. add net default: gateway 10.181.18.1: Network is unreachable
  25. [root@native_zone ~]# route add default 10.181.18.1 149.62.183.25
  26. writing to routing socket: Operation not supported
  27. add net default: gateway 10.181.18.1: Operation not supported
  28. [root@native_zone ~]#
Advertisement
Add Comment
Please, Sign In to add comment