Difference between revisions of "Mesh/Network Configuration for Linux"

From Sudo Room
Jump to navigation Jump to search
(creating page)
 
m (removed generic section)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Generic ==
= Ubuntu =


== Ubuntu ==
== GUI ==


* Click on the network icon on the top right of the toolbar.
* Click on the network icon on the top right of the toolbar.
Line 9: Line 9:
* Change method to "Manual"
* Change method to "Manual"
* Click Add
* Click Add
* Under "Address" type "192.168.1.10" (some devices will only accept from this IP)
* Under "Address" type the IP address
* Under "Netmask" type "255.255.255.0"
* Under "Netmask" type the Subnet Mask address
* Under "Gateway" type "0.0.0.0"
* Under "Gateway" type router / gateway address
* Click Save
* Click Save
* Click Close
* Click Close
== Command Line ==
Ubuntu users can reconfigure their network settings using the command line. In a separate terminal you will log into the node using these directions:
Find the name of your ethernet port by running <tt>ifconfig</tt>
  ifconfig
In the example below, the wired Ethernet port was "eth0"
In the terminal type the following, replacing "eth0" with the name of your Ethernet port:
  sudo ip addr add 172.22.0.9/24 dev eth0

Latest revision as of 21:36, 4 May 2016

Ubuntu

GUI

  • Click on the network icon on the top right of the toolbar.
  • Click "Edit connections..."
  • Click on Ethernet connection "Wired connection 1" and click Edit
  • Click on the "IPv4 Settings" tab
  • Change method to "Manual"
  • Click Add
  • Under "Address" type the IP address
  • Under "Netmask" type the Subnet Mask address
  • Under "Gateway" type router / gateway address
  • Click Save
  • Click Close

Command Line

Ubuntu users can reconfigure their network settings using the command line. In a separate terminal you will log into the node using these directions:

Find the name of your ethernet port by running ifconfig

 ifconfig

In the example below, the wired Ethernet port was "eth0"

In the terminal type the following, replacing "eth0" with the name of your Ethernet port:

 sudo ip addr add 172.22.0.9/24 dev eth0