Tiny TCP/IP protcol stack for lecture.
Build sample applications and test programs
$ make
with debug output
$ CFLAGS=-DDEBUG make
TCP Echo server (with dynamic address)
$ sudo apps/tcp_echo eth0 00:00:de:ad:be:ef dhcp
UDP Echo server (with static address)
$ sudo apps/tcp_echo eth0 static 172.16.100.2 255.255.255.0 172.16.100.1
Both application listen on port 7.
test/raw_test
$ sudo test/raw_test eth0
test/ethernet_test
$ sudo test/ethernet_test eth0
test/slip_test
$ sudo test/slip_test /dev/ttyXXX
test/arp_test
$ sudo test/arp_test eth0 00:00:de:ad:be:ef 172.16.100.2
You can select a Link-Level RAW device.
- raw_socket
- raw_tap
- raw_bpf
It can change with the $RAW
variable in the Makefile.
The default value: Linux is raw_socket and BSD is raw_bpf.
microps is under the MIT License: See LICENSE file.