10.175.34.1 is the default gateway to reach other networks outside the 10.175.34.0/24 network.
The last 2 routes are used for communications to the Company and Test web servers, reachable via HTTP.
Tried ping and access the secret webserver at http://192.168.222.199, with no response:
└─#ping192.168.222.199PING192.168.222.199 (192.168.222.199) 56(84) bytes of data.From10.1.0.5icmp_seq=1DestinationHostUnreachableFrom10.1.0.5icmp_seq=2DestinationHostUnreachable^C---192.168.222.199pingstatistics---7packetstransmitted,0received,+7errors,100%packetloss,time7151mspipe4
Secret server is not accessible at 192.168.222.199. Manually add one more route in order to access its network 192.168.222.0/24 through Kali's gateway 10.175.34.1.
ip route help - ip route command help
ip route add 192.168.222.0/24 via 10.175.34.1 dev eth1
route - check current routes
ping 192.168.222.199 - check pinging the web server, should be working (not necessary, ICMP protocol)
└─#iproutedefaultvia10.1.0.1devadlab0onlink10.1.0.0/24devadlab0protokernelscopelinksrc10.1.0.510.175.34.0/24deveth1protokernelscopelinksrc10.175.34.140172.16.88.0/24via10.175.34.1deveth1192.168.241.0/24via10.175.34.1deveth1└─#iprouteadd192.168.222.0/24via10.175.34.1deveth1└─#routeKernelIProutingtableDestinationGatewayGenmaskFlagsMetricRefUseIfacedefault10.1.0.10.0.0.0UG000adlab010.1.0.00.0.0.0255.255.255.0U000adlab010.175.34.00.0.0.0255.255.255.0U000eth1172.16.88.010.175.34.1255.255.255.0UG000eth1192.168.222.010.175.34.1255.255.255.0UG000eth1192.168.241.010.175.34.1255.255.255.0UG000eth1└─#ping192.168.222.199PING192.168.222.199 (192.168.222.199) 56(84) bytes of data.64bytesfrom192.168.222.199:icmp_seq=1ttl=63time=1.70ms64bytesfrom192.168.222.199:icmp_seq=2ttl=63time=0.857ms
After the route was successfully added, navigate to http://192.168.222.199 in the web browser: