the pcmcia card and ethernet card are connected in a bridged mode to the virtualbox.....
i disabled the tcp/ip on the host in the case of pcmcia card..
in the guest pcmcia is not getting any ip address..whereas ethernet is getting some address but i am unable to access the internet from the guest ...the internet is connected via ethernet cable on the host.............
Code: Select all
/etc/init.d/networking restart
* Reconfiguring network interfaces...
Ignoring unknown interface eth5=eth5
SIOCADDRT: No such process
Failed to bring up eth4
subsequently i managed eth4 and eth5 in bridged mode and i also enabled ip fwd =1
here is my routing table
Code: Select all
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
10.22.0.0 * 255.255.0.0 U 0 0 0 eth5
link-local * 255.255.0.0 U 1000 0 0 eth4
192.168.0.0 10.22.1.1 255.255.0.0 UG 0 0 0 eth5
192.168.0.0 192.168.5.34 255.255.0.0 UG 0 0 0 eth4
192.168.0.0 * 255.255.0.0 U 0 0 0 eth4
default 10.22.1.1 0.0.0.0 UG 100 0 0 eth5
the clients on 192 network still cant access internet..
they cant ping the static ip of the card
they can ping the inbuilt dhcp server ip of this card
eth4 is the card
Code: Select all
auto eth4
iface eth4 inet static
address 192.168.0.1
netmask 255.255.255.0
gateway 10.22.6.171
gateway address is the address of the ethernet cable which is eth5 on virtual box
i shut down the machine and restarted it with ethernet cable in NAT mode and this time the virtual box parsed the interfaces file..
do i need to ip forward=1 now? for routing to happen?