We have a so called "LAB"-Network(VLAN). The Switch and Firewall are configured to allow access from the ip 10.150.151.1
(Windows Client in LAB) and 10.150.151.10(Debian Client in LAB) to a mail gateway(10.100.15.3
).
Using the following Network-Configuration with Windows 8.1 I'm able to access the mail gateway:
IP address: 10.150.151.1 (or 10.150.151.10)
Default Gateway: 10.150.1.1
Netmask: 255.255.0.0
Using the following Network-Configuration with Debian(7) I'm not able to access the mail gateway:
auto eth0
iface eth0 inet static
address 10.150.151.1 (or 10.150.151.10)
netmask 255.255.0.0
gateway 10.150.1.1
route -n
on Debian:
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 10.150.1.1 0.0.0.0 UG 0 0 0 eth0
10.150.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth0
traceroute 10.100.15.3
on Debian:
1 * * *
2 * * *
3 * * * (up to 30 * * *)
tracert 10.100.15.3
on Windows 8.1:
1 <1 ms <1 ms <1 ms 10.150.1.11
2 3 ms <1 ms <1 ms 10.100.15.3
What am I doing wrong? Like I wrote above I'm able to access the mail gateway with both (.1 and .10) IP's from Windows 8.1, but with Debian it won't work. Do I have to configure anything else ?