Difference between revisions of "NUC Networking"

From wikidb
Jump to: navigation, search
(Created page with "== Manual Setting == [http://ubuntuguide.org/wiki/Ubuntu_Trusty_Networking Ubuntu Trusty Networking] Changed /etc/networking/interfaces from # interfaces(5) file used by if...")
 
(Manual Setting)
Line 23: Line 23:
  
 
Using wicd did't work for me.
 
Using wicd did't work for me.
 +
 +
== Access Point ==
 +
 +
* [http://askubuntu.com/questions/180733/how-to-setup-an-access-point-mode-wi-fi-hotspot Graphical Access-Point Setup]
 +
* [https://help.ubuntu.com/community/WifiDocs/WirelessAccessPoint Manual Access-Point Setup]

Revision as of 12:10, 2 July 2016

Manual Setting

Ubuntu Trusty Networking

Changed /etc/networking/interfaces from

 # interfaces(5) file used by ifup(8) and ifdown(8)
 auto lo
 iface lo inet loopback

To

 # interfaces(5) file used by ifup(8) and ifdown(8)
 auto lo
 iface lo inet loopback
 #
 auto eth0
 iface eth0 inet static
 address 10.0.0.9
 netmask 255.0.0.0
 gateway 10.0.0.1
 dns-nameservers 205.171.3.65 205.171.2.65

Then I restarted the computer. Don't know why the following didn't work.

 /etc/init.d/networking restart

Using wicd did't work for me.

Access Point