Linus Kernel Kernel+GNU OS: Linux Linux Linux

You might also like

Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 9

Linus = Linux

Kernel = Linux
Kernel+GNU=Linux OS
Redhat Debian Arch
.rpm Package .deb Package pkg.tar.xz
Fedora Ubuntu Manjaro
CentOS deepin Antergos
Network Config files:

/etc/sysconfig/network-scripts/ Interface configuration files


Interface control scripts
Network function files

/etc/hosts Hostname and DNS functionality

/etc/resolv.conf DNS Server IP’s

/etc/sysconfig/network Routing and permanent host info

/etc/NetworkManager VPN, Mobile broadband, etc


DEVICE=eth0:0
ONBOOT=yes
BOOTPROTO=static
BROADCAST=192.168.10.255
IPADDR=192.168.10.12
NETMASK=255.255.255.0
NETWORK=192.168.10.0
ONBOOT=yes
- nmtui = Network Manager text user Interface
- nmcli = Network Manager Command Line Interface
- nm-connection-editor control-network NetworkManager.
Graphical user interface for Network Manager.
- Traditional text editor (vi, nano) with files
Sysv Traditional tree execution
Setting IP:
ip link # show list of network interfaces
ip addr add 192.168.10.12/255.255.255.0 broadcast 192.168.10.255 dev eth0
ip addr show

ifconfig -a # show list of network interfaces even if down


ifconfig eth0 192.168.10.12 netmask 255.255.255.0 broadcast 192.168.10.255
ifconfig # no arguments defaults to showing the current IP configuration

route add default gw {IP-ADDRESS} {INTERFACE-NAME}


Troubleshooting Network:

You might also like