Someone with little or no networking knowledge.
ECE/CS 372 at OSU covers this content, more or less
"a group or system of interconnected people or things"
To us, a network is:
"A set of agreed upon rules for communication"
Open Systems Interconnection
Note
"Create a layer of easily localized functions so that the layer could be totally redesigned and its protocols changed in a major way... without changing the services expected from and provided to adjacent layers"
Networking Hardware
RS-232
MAC: Media Access Control
Packet forwarding and routing
Network and host addressing
Interact directly with program same-order delivery, reliability, flow control, and congestion avoidance
TCP: | Transmission Control Protocol |
---|
UDP: | User Datagram Protocol |
---|
In a linux terminal run::
ip a
These will display information about your network interfaces.
See also:
ifconfig
iwconfig
user@host:~$ ip a
...
2: eth2: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state DOWN qlen 1000
link/ether 33:77:00:44:66:33 brd ff:ff:ff:ff:ff:ff
3: wlan1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
link/ether 24:77:33:44:55:66 brd ff:ff:ff:ff:ff:ff
inet 192.168.1.55/24 brd 192.168.1.255 scope global wlan1
inet6 fe80::2677:3ff:fed4:538c/64 scope link
valid_lft forever preferred_lft forever
Decimal IP Address | Binary IP Address |
192.168.1.55 | 11000000.10101000.00000001.00110111 |
255.255.255.0 | 11111111.11111111.11111111.00000000 |
Part of address | Corresponding address |
Network (Decimal) | 192.168.1.0 |
Network (Binary) | 11000000.10101000.00000001.00000000 |
Host (Decimal) | 0.0.0.55 |
Host (Binary) | 00000000.00000000.00000000.00110111 |
Available Hosts: 192.168.1.[1-254]
Broadcast address: 192.168.1.255
Decimal IP Address | Binary IP Address |
192.168.90.55 | |
255.255.192.0 |
Decimal IP Address | Binary IP Address |
192.168.90.55 | 11000000.10101000.01011010.00110111 |
255.255.192.0 | 11111111.11111111.11000000.00000000 |
Part of address | Corresponding address |
Network (Decimal) | 192.168.64.0 |
Network (Binary) | |
Host (Decimal) | 0.0.26.55 |
Host (Binary) |
Decimal IP Address | Binary IP Address |
192.168.90.55 | 11000000.10101000.01011010.00110111 |
255.255.192.0 | 11111111.11111111.11000000.00000000 |
Part of address | Corresponding address |
Network (Decimal) | 192.168.64.0 |
Network (Binary) | 11000000.10101000.01000000.00000000 |
Host (Decimal) | 0.0.26.55 |
Host (Binary) | 00000000.00000000.00011010.00110111 |
Available Hosts: 192.168.[64-127].[1-254]
Broadcast Address: 192.168.127.255
user@host:~$ route
Kernal IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default foo.osuosl 0.0.0.0 UG 0 0 0 wlan1
link-local * 255.255.0.0 U 1000 0 0 wlan1
192.168.1.0 * 255.255.255.0 U 2 0 0 wlan1
user@host:~$ route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.1.1 0.0.0.0 UG 0 0 0 wlan1
169.254.0.0 0.0.0.0 255.255.0.0 U 1000 0 0 wlan1
192.168.1.0 0.0.0.0 255.255.255.0 U 2 0 0 wlan1
What happens when your computer connects to a network?
Must in advance know:
All of the statically defined parameters are retrieved over the network via DHCP
But how do you communicate over the network without a network configuration?
NAT: | Network Address Translation |
---|
Connection oriented vs Connectionless
Why is this important?