|
|||||||||||
How to startup networking at the linux command line |
|||||||||||
February 19, 2015 |
|||||||||||
Here we describe how to startup networking at the linux command line.
This worked for fedora 19 (xfce). iwconfig (this will list out the available hardware... "enp3s0" , etc... ) ifconfig enp3s0 192.168.1.100 (this sets the device "enp3s0" with an ip address) route add default gw 192.168.1.1 (this sets a default gateway) to add DNS's, edit the file: /etc/resolv.conf and add the lines: nameserver xx.xx.xx.xx then start the network service: service network start or: service network restart
|
|||||||||||