Which layers do the Linux network support and what us the responsibility of each?
Why is SSH considered more secure then Telnet?
SSH is encrypted where as Telnet is not.
What is the highest priority network in Linux?
Local host (127.0.0.1)
What does every basic network need?
What are the differences between multicast, unicast and broadcast?
How to see all stats for network interfaces?
ip -s link
In 'ip -s link' what do the following show? –Errors –Dropped –Overruns –Frame –Carrier –Collisions
–Errors –CRC Error in packet
–Dropped –Kernel buffers overflowed
–Overruns –Card buffer overflowed
–Frame –Frame length not a multiple of 8 bits
–Carrier –Probably a fault in the card
–Collisions –tx collided with another frame
Given a desktop Linux machine with an IP of 10.0.1.14/24, and a gateway which is 1 less than the broadcast address, write down the ip commands needed to define the interface and routing table.
ip addr add 10.0.1.14/24 broadcast 10.0.1.255 dev eth1
ip route append 10.0.1.0/24 dev eth1
ip route append default 10.0.2.254