Internet via Ethernet
- This topic has 2 replies, 2 voices, and was last updated 9 years, 5 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
Home › Forums › Conduit: mLinux Model › Internet via Ethernet
Hi,
I’m trying to find instructions to connect a Conduit H5 210L to the internet via its ethernet port. Are there any available instructions for this?
Thanks,
Anthony
Hi Anthony,
Configure the Conduit as a PC client that can access to the internet via your Company router.
Assuming you have a company router that can access to the internet and the IP address is as the following:
Router:
——-
IP address: 192.168.2.254
Conduit:
——-
IP address: 192.168.2.1
Gateway: 192.168.2.254 <–Point to your Router ethernet interface.
1. ssh into the Conduit and go to folder – /etc/network/ and modify the ‘interfaces’ file as follow:
…
#Wired interface
auto eth0
iface eth0 inet static
address 192.168.2.1
netmask 255.255.255.0
gateway 192.168.2.254 <–Add this line
…
Then save the file and exit.
2. Type: reboot – to reboot your Conduit – and then once it backs up, do the ping 8.8.8.8 and see if you are getting a replied. If you are, then you are connecting to the internet.
Regards,
BT
Awesome. Thank you Bryan!