Removed submodules
This commit is contained in:
@@ -0,0 +1,93 @@
|
||||
#
|
||||
# Simple Test Makefile
|
||||
# Mike Lam, James Madison University, August 2016
|
||||
#
|
||||
# This version of the Makefile includes support for building a test suite. The
|
||||
# recommended framework is Check (http://check.sourceforge.net/). To build and
|
||||
# run the test suite, execute the "test" target. The test suite must be located
|
||||
# in a module called "testsuite". The MODS, LIBS, and OBJS variables work as
|
||||
# they do in the main Makefile.
|
||||
#
|
||||
# To change the default build target (which executes when you just type
|
||||
# "make"), change the right-hand side of the definition of the "default"
|
||||
# target.
|
||||
#
|
||||
# By default, this makefile will build the project with debugging symbols and
|
||||
# without optimization. To change this, edit or remove the "-g" and "-O0"
|
||||
# options in CFLAGS and LDFLAGS accordingly.
|
||||
#
|
||||
# By default, this makefile build the application using the GNU C compiler,
|
||||
# adhering to the C99 standard with all warnings enabled.
|
||||
|
||||
|
||||
# application-specific settings and run target
|
||||
|
||||
EXE=../dhcps
|
||||
TEST=testsuite
|
||||
MODS=public.o
|
||||
OBJS=../port_utils.o
|
||||
LIBS=
|
||||
|
||||
UTESTOUT=utests.txt
|
||||
ITESTOUT=itests.txt
|
||||
SCHECKOUT=style.txt
|
||||
|
||||
default: $(TEST)
|
||||
|
||||
TOBJS=dhcp.o format.o threads.o
|
||||
|
||||
|
||||
threads: threads.c $(TOBJS)
|
||||
gcc -O2 -o threads $(TOBJS) $(OBJS)
|
||||
|
||||
$(EXE):
|
||||
make -C ../
|
||||
|
||||
test: utest itest style
|
||||
@echo "========================================"
|
||||
|
||||
utest: $(EXE) $(TEST)
|
||||
@echo "========================================"
|
||||
@echo " UNIT TESTS"
|
||||
@./$(TEST) 2>/dev/null >$(UTESTOUT)
|
||||
@cat $(UTESTOUT) | sed -n -e '/Checks/,$$p' | sed -e 's/^private.*:[EF]://g'
|
||||
|
||||
itest: $(EXE)
|
||||
@echo "========================================"
|
||||
@echo " INTEGRATION TESTS"
|
||||
@./integration.sh | tee $(ITESTOUT)
|
||||
|
||||
style: $(EXE)
|
||||
@echo "========================================"
|
||||
@echo " CODING STYLE CHECK"
|
||||
@./style.sh 2>/dev/null >$(SCHECKOUT)
|
||||
@cat $(SCHECKOUT)
|
||||
|
||||
# compiler/linker settings
|
||||
|
||||
CC=gcc
|
||||
CFLAGS=-g -O0 -Wall --std=gnu99 -pedantic
|
||||
LDFLAGS=-g -O0
|
||||
|
||||
#CKCFLAGS=
|
||||
CKLIBS+=-lcheck -lm -lpthread
|
||||
|
||||
ifeq ($(shell uname -s),Linux)
|
||||
CKLIBS+=-lrt -lsubunit
|
||||
endif
|
||||
|
||||
|
||||
# build targets
|
||||
|
||||
$(TEST): $(TEST).o $(MODS) $(OBJS)
|
||||
$(CC) -c testsuite.c -o testsuite.o
|
||||
$(CC) $(LDFLAGS) -o $(TEST) $^ $(CKLIBS)
|
||||
|
||||
%.o: %.c
|
||||
$(CC) -c $(CFLAGS) $<
|
||||
|
||||
clean:
|
||||
rm -rf $(TEST) $(TEST).o $(MODS) $(UTESTOUT) $(ITESTOUT) $(SCHECKOUT) outputs valgrind ckstyle $(COBJS)
|
||||
|
||||
.PHONY: default clean test unittest inttest
|
||||
|
||||
Executable
BIN
Binary file not shown.
@@ -0,0 +1 @@
|
||||
3 7 50 f0 192.168.10.0 192.168.1.8:DHCPREQUEST [htype=ARC, xid=50, chaddr=f0, server=192.168.10.0, reqid=192.168.1.8]
|
||||
@@ -0,0 +1,4 @@
|
||||
1 7 12345678 c0:DHCPDISCOVER [htype=ARC, xid=12345678, chaddr=c0]
|
||||
3 7 12345678 c0 192.168.1.0 192.168.1.1:DHCPREQUEST [htype=ARC, xid=12345678, chaddr=c0, server=192.168.1.0, reqid=192.168.1.1]
|
||||
1 7 87654321 a8:DHCPDISCOVER [htype=ARC, xid=87654321, chaddr=a8]
|
||||
3 7 87654321 a8 192.168.1.0 192.168.1.2:DHCPREQUEST [htype=ARC, xid=87654321, chaddr=a8, server=192.168.1.0, reqid=192.168.1.2]
|
||||
@@ -0,0 +1,6 @@
|
||||
1 7 12345678 c0:DHCPDISCOVER [htype=ARC, xid=12345678, chaddr=c0]
|
||||
3 7 12345678 c0 192.168.1.0 192.168.1.1:DHCPREQUEST [htype=ARC, xid=12345678, chaddr=c0, server=192.168.1.0, reqid=192.168.1.1]
|
||||
7 7 12345678 c0 192.168.1.0 192.168.1.1:DHCPRELEASE [htype=ARC, xid=12345678, chaddr=c0, server=192.168.1.0, reqid=192.168.1.1]
|
||||
1 7 87654321 a8:DHCPDISCOVER [htype=ARC, xid=87654321, chaddr=a8]
|
||||
3 7 87654321 a8 192.168.1.0 192.168.1.2:DHCPREQUEST [htype=ARC, xid=87654321, chaddr=a8, server=192.168.1.0, reqid=192.168.1.2]
|
||||
7 7 87654321 a8 192.168.1.0 192.168.1.2:DHCPRELEASE [htype=ARC, xid=87654321, chaddr=a8, server=192.168.1.0, reqid=192.168.1.2]
|
||||
@@ -0,0 +1,2 @@
|
||||
1 1 42 010102020303:DHCPDISCOVER [htype=ETH, xid=42, chaddr=010102020303]
|
||||
3 1 42 010102020303 192.168.1.0 192.168.1.1:DHCPREQUEST [htype=ETH, xid=42, chaddr=010102020303, server=192.168.1.0, reqid=192.168.1.1]
|
||||
@@ -0,0 +1 @@
|
||||
1 1 0 010102020303:DHCPDISCOVER [htype=ETH, xid=0, chaddr=010102020303]
|
||||
@@ -0,0 +1,9 @@
|
||||
1 18 45 c0d1e2:DHCPDISCOVER [htype=FIBRE, xid=45, chaddr=c0d1e2]
|
||||
3 18 45 c0d1e2 192.168.1.0 192.168.1.1:DHCPREQUEST [htype=FIBRE, xid=45, chaddr=c0d1e2, server=192.168.1.0, reqid=192.168.1.1]
|
||||
7 18 45 c0d1e2 192.168.1.0 192.168.1.1:DHCPRELEASE [htype=FIBRE, xid=45, chaddr=c0d1e2, server=192.168.1.0, reqid=192.168.1.1]
|
||||
1 18 35 a8b6c4:DHCPDISCOVER [htype=FIBRE, xid=35, chaddr=a8b6c4]
|
||||
3 18 35 a8b6c4 192.168.1.0 192.168.1.2:DHCPREQUEST [htype=FIBRE, xid=35, chaddr=a8b6c4, server=192.168.1.0, reqid=192.168.1.2]
|
||||
7 18 35 a8b6c4 192.168.1.0 192.168.1.2:DHCPRELEASE [htype=FIBRE, xid=35, chaddr=a8b6c4, server=192.168.1.0, reqid=192.168.1.2]
|
||||
1 18 55 c0d1e2:DHCPDISCOVER [htype=FIBRE, xid=55, chaddr=c0d1e2]
|
||||
3 18 55 c0d1e2 192.168.1.0 192.168.1.1:DHCPREQUEST [htype=FIBRE, xid=55, chaddr=c0d1e2, server=192.168.1.0, reqid=192.168.1.1]
|
||||
7 18 55 c0d1e2 192.168.1.0 192.168.1.1:DHCPRELEASE [htype=FIBRE, xid=55, chaddr=c0d1e2, server=192.168.1.0, reqid=192.168.1.1]
|
||||
@@ -0,0 +1,6 @@
|
||||
1 15 12345678 c0a8:DHCPDISCOVER [htype=ARC, xid=12345678, chaddr=c0a8]
|
||||
1 15 87654321 a8c0:DHCPDISCOVER [htype=ARC, xid=87654321, chaddr=a8c0]
|
||||
3 15 12345678 c0a8 192.168.1.0 192.168.1.1:DHCPREQUEST [htype=ARC, xid=12345678, chaddr=c0a8, server=192.168.1.0, reqid=192.168.1.1]
|
||||
3 15 87654321 a8c0 192.168.1.0 192.168.1.2:DHCPREQUEST [htype=ARC, xid=87654321, chaddr=a8c0, server=192.168.1.0, reqid=192.168.1.2]
|
||||
7 15 87654321 a8c0 192.168.1.0 192.168.1.2:DHCPRELEASE [htype=ARC, xid=87654321, chaddr=a8c0, server=192.168.1.0, reqid=192.168.1.2]
|
||||
7 15 12345678 c0a8 192.168.1.0 192.168.1.1:DHCPRELEASE [htype=ARC, xid=12345678, chaddr=c0a8, server=192.168.1.0, reqid=192.168.1.1]
|
||||
@@ -0,0 +1,3 @@
|
||||
1 6 65535 a1b1c2d2e3f3:DHCPDISCOVER [htype=IEEE802, xid=65535, chaddr=a1b1c2d2e3f3]
|
||||
3 6 65535 a1b1c2d2e3f3 192.168.1.0 192.168.1.1:DHCPREQUEST [htype=IEEE802, xid=65535, chaddr=a1b1c2d2e3f3, server=192.168.1.0, reqid=192.168.1.1]
|
||||
7 6 65535 a1b1c2d2e3f3 192.168.1.0 192.168.1.1:DHCPRELEASE [htype=IEEE802, xid=65535, chaddr=a1b1c2d2e3f3, server=192.168.1.0, reqid=192.168.1.1]
|
||||
@@ -0,0 +1 @@
|
||||
3 6 0 0123456789ab 192.168.1.0 192.168.1.1:DHCPREQUEST [htype=IEEE802, xid=0, chaddr=0123456789ab, server=192.168.1.0, reqid=192.168.1.1]
|
||||
@@ -0,0 +1,9 @@
|
||||
1 1 42 010102020303:DHCPDISCOVER [htype=ETH, xid=42, chaddr=010102020303]
|
||||
3 1 42 010102020303 192.168.1.0 192.168.1.1:DHCPREQUEST [htype=ETH, xid=42, chaddr=010102020303, server=192.168.1.0, reqid=192.168.1.1]
|
||||
1 7 87654321 a8:DHCPDISCOVER [htype=ARC, xid=87654321, chaddr=a8]
|
||||
3 7 87654321 a8 192.168.1.0 192.168.1.2:DHCPREQUEST [htype=ARC, xid=87654321, chaddr=a8, server=192.168.1.0, reqid=192.168.1.2]
|
||||
1 6 1234 0123456789ab:DHCPDISCOVER [htype=ETH, xid=1234, chaddr=0123456789ab]
|
||||
3 6 1234 0123456789ab 192.168.1.0 192.168.1.3:DHCPREQUEST [htype=IEEE802, xid=1234, chaddr=0123456789ab, server=192.168.1.0, reqid=192.168.1.3]
|
||||
1 18 55 c0d1e2:DHCPDISCOVER [htype=FIBRE, xid=55, chaddr=c0d1e2]
|
||||
3 18 55 c0d1e2 192.168.1.0 192.168.1.4:DHCPREQUEST [htype=FIBRE, xid=55, chaddr=c0d1e2, server=192.168.1.0, reqid=192.168.1.4]
|
||||
1 15 12345678 c0a8:DHCPDISCOVER [htype=ARC, xid=12345678, chaddr=c0a8]
|
||||
@@ -0,0 +1,16 @@
|
||||
1 1 42 010102020303:DHCPDISCOVER [htype=ETH, xid=42, chaddr=010102020303]
|
||||
3 1 42 010102020303 192.168.1.0 192.168.1.1:DHCPREQUEST [htype=ETH, xid=42, chaddr=010102020303, server=192.168.1.0, reqid=192.168.1.1]
|
||||
1 7 87654321 a8:DHCPDISCOVER [htype=ARC, xid=87654321, chaddr=a8]
|
||||
3 7 87654321 a8 192.168.1.0 192.168.1.2:DHCPREQUEST [htype=ARC, xid=87654321, chaddr=a8, server=192.168.1.0, reqid=192.168.1.2]
|
||||
1 6 1234 0123456789ab:DHCPDISCOVER [htype=ETH, xid=1234, chaddr=0123456789ab]
|
||||
3 6 1234 0123456789ab 192.168.1.0 192.168.1.3:DHCPREQUEST [htype=IEEE802, xid=1234, chaddr=0123456789ab, server=192.168.1.0, reqid=192.168.1.3]
|
||||
1 18 55 c0d1e2:DHCPDISCOVER [htype=FIBRE, xid=55, chaddr=c0d1e2]
|
||||
3 18 55 c0d1e2 192.168.1.0 192.168.1.4:DHCPREQUEST [htype=FIBRE, xid=55, chaddr=c0d1e2, server=192.168.1.0, reqid=192.168.1.4]
|
||||
7 1 42 010102020303 192.168.1.0 192.168.1.1:DHCPREELEASE [htype=ETH, xid=42, chaddr=010102020303, server=192.168.1.0, reqid=192.168.1.1]
|
||||
1 15 12345678 c0a8:DHCPDISCOVER [htype=ARC, xid=12345678, chaddr=c0a8]
|
||||
3 15 12345678 c0a8 192.168.1.0 192.168.1.1:DHCPREQUEST [htype=ARC, xid=12345678, chaddr=c0a8, server=192.168.1.0, reqid=192.168.1.1]
|
||||
7 7 87654321 a8 192.168.1.0 192.168.1.2:DHCPRELEASE [htype=ARC, xid=87654321, chaddr=a8, server=192.168.1.0, reqid=192.168.1.2]
|
||||
7 6 1234 0123456789ab 192.168.1.0 192.168.1.3:DHCPRELEASE [htype=IEEE802, xid=1234, chaddr=0123456789ab, server=192.168.1.0, reqid=192.168.1.3]
|
||||
7 18 55 c0d1e2 192.168.1.0 192.168.1.4:DHCPRELEASE [htype=FIBRE, xid=55, chaddr=c0d1e2, server=192.168.1.0, reqid=192.168.1.4]
|
||||
1 6 5678 0123456789ab:DHCPDISCOVER [htype=ETH, xid=1234, chaddr=0123456789ab]
|
||||
3 6 5678 0123456789ab 192.168.1.0 192.168.1.3:DHCPREQUEST [htype=IEEE802, xid=1234, chaddr=0123456789ab, server=192.168.1.0, reqid=192.168.1.3]
|
||||
@@ -0,0 +1,11 @@
|
||||
1 1 42 010102020303:DHCPDISCOVER [htype=ETH, xid=42, chaddr=010102020303]
|
||||
3 1 42 010102020303 192.168.1.0 192.168.1.1:DHCPREQUEST [htype=ETH, xid=42, chaddr=010102020303, server=192.168.1.0, reqid=192.168.1.1]
|
||||
1 7 87654321 a8:DHCPDISCOVER [htype=ARC, xid=87654321, chaddr=a8]
|
||||
3 7 87654321 a8 192.168.1.0 192.168.1.2:DHCPREQUEST [htype=ARC, xid=87654321, chaddr=a8, server=192.168.1.0, reqid=192.168.1.2]
|
||||
1 6 1234 0123456789ab:DHCPDISCOVER [htype=ETH, xid=1234, chaddr=0123456789ab]
|
||||
3 6 1234 0123456789ab 192.168.1.0 192.168.1.3:DHCPREQUEST [htype=IEEE802, xid=1234, chaddr=0123456789ab, server=192.168.1.0, reqid=192.168.1.3]
|
||||
1 18 55 c0d1e2:DHCPDISCOVER [htype=FIBRE, xid=55, chaddr=c0d1e2]
|
||||
3 18 55 c0d1e2 192.168.1.0 192.168.1.4:DHCPREQUEST [htype=FIBRE, xid=55, chaddr=c0d1e2, server=192.168.1.0, reqid=192.168.1.4]
|
||||
7 1 42 010102020303 192.168.1.0 192.168.1.1:DHCPREELEASE [htype=ETH, xid=42, chaddr=010102020303, server=192.168.1.0, reqid=192.168.1.1]
|
||||
1 15 12345678 c0a8:DHCPDISCOVER [htype=ARC, xid=12345678, chaddr=c0a8]
|
||||
3 15 12345678 c0a8 192.168.1.0 192.168.1.1:DHCPREQUEST [htype=ARC, xid=12345678, chaddr=c0a8, server=192.168.1.0, reqid=192.168.1.1]
|
||||
@@ -0,0 +1,11 @@
|
||||
1 1 42 010102020303:DHCPDISCOVER [htype=ETH, xid=42, chaddr=010102020303]
|
||||
1 7 87654321 a8:DHCPDISCOVER [htype=ARC, xid=87654321, chaddr=a8]
|
||||
1 6 1234 0123456789ab:DHCPDISCOVER [htype=ETH, xid=1234, chaddr=0123456789ab]
|
||||
1 18 55 c0d1e2:DHCPDISCOVER [htype=FIBRE, xid=55, chaddr=c0d1e2]
|
||||
3 1 42 010102020303 192.168.1.0 192.168.1.1:DHCPREQUEST [htype=ETH, xid=42, chaddr=010102020303, server=192.168.1.0, reqid=192.168.1.1]
|
||||
3 7 87654321 a8 192.168.1.0 192.168.1.2:DHCPREQUEST [htype=ARC, xid=87654321, chaddr=a8, server=192.168.1.0, reqid=192.168.1.2]
|
||||
3 6 1234 0123456789ab 192.168.1.0 192.168.1.3:DHCPREQUEST [htype=IEEE802, xid=1234, chaddr=0123456789ab, server=192.168.1.0, reqid=192.168.1.3]
|
||||
3 18 55 c0d1e2 192.168.1.0 192.168.1.4:DHCPREQUEST [htype=FIBRE, xid=55, chaddr=c0d1e2, server=192.168.1.0, reqid=192.168.1.4]
|
||||
7 1 42 010102020303 192.168.1.0 192.168.1.1:DHCPRELEASE [htype=ETH, xid=42, chaddr=010102020303, server=192.168.1.0, reqid=192.168.1.1]
|
||||
1 15 12345678 c0a8:DHCPDISCOVER [htype=ARC, xid=12345678, chaddr=c0a8]
|
||||
3 15 12345678 c0a8 192.168.1.0 192.168.1.1:DHCPREQUEST [htype=ARC, xid=12345678, chaddr=c0a8, server=192.168.1.0, reqid=192.168.1.1]]
|
||||
@@ -0,0 +1,11 @@
|
||||
1 1 42 010102020303:DHCPDISCOVER [htype=ETH, xid=42, chaddr=010102020303]
|
||||
1 7 87654321 a8:DHCPDISCOVER [htype=ARC, xid=87654321, chaddr=a8]
|
||||
1 6 1234 0123456789ab:DHCPDISCOVER [htype=ETH, xid=1234, chaddr=0123456789ab]
|
||||
1 18 55 c0d1e2:DHCPDISCOVER [htype=FIBRE, xid=55, chaddr=c0d1e2]
|
||||
3 1 42 010102020303 192.168.1.0 192.168.1.1:DHCPREQUEST [htype=ETH, xid=42, chaddr=010102020303, server=192.168.1.0, reqid=192.168.1.1]
|
||||
3 7 87654321 a8 192.168.1.0 192.168.1.2:DHCPREQUEST [htype=ARC, xid=87654321, chaddr=a8, server=192.168.1.0, reqid=192.168.1.2]
|
||||
3 6 1234 0123456789ab 192.168.1.0 192.168.1.3:DHCPREQUEST [htype=IEEE802, xid=1234, chaddr=0123456789ab, server=192.168.1.0, reqid=192.168.1.3]
|
||||
3 18 55 c0d1e2 192.168.1.0 192.168.1.4:DHCPREQUEST [htype=FIBRE, xid=55, chaddr=c0d1e2, server=192.168.1.0, reqid=192.168.1.4]
|
||||
7 1 42 010102020303 192.168.1.0 192.168.1.1:DHCPRELEASE [htype=ETH, xid=42, chaddr=010102020303, server=192.168.1.0, reqid=192.168.1.1]
|
||||
1 15 12345678 c0a8:DHCPDISCOVER [htype=ARC, xid=12345678, chaddr=c0a8]
|
||||
3 15 12345678 c0a8 192.168.1.0 192.168.1.1:DHCPREQUEST [htype=ARC, xid=12345678, chaddr=c0a8, server=192.168.1.0, reqid=192.168.1.1]]
|
||||
@@ -0,0 +1,432 @@
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 500 (0x1f4)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 0123456789ab
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 1 [Ethernet (10Mb)]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 2000 (0x7d0)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 010102020303
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 15 [Frame Relay]
|
||||
Hardware Address Length (hlen) = 2
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 7500 (0x1d4c)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 10000 (0x2710)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 65
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 40000 (0x9c40)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 87
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 1 [Ethernet (10Mb)]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 100000 (0x186a0)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 010203040506
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 250000 (0x3d090)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = ccddee
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 500000 (0x7a120)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 500 (0x1f4)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 0123456789ab
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 1 [Ethernet (10Mb)]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 2000 (0x7d0)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 010102020303
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 15 [Frame Relay]
|
||||
Hardware Address Length (hlen) = 2
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 7500 (0x1d4c)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 10000 (0x2710)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 65
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 40000 (0x9c40)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 87
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 1 [Ethernet (10Mb)]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 100000 (0x186a0)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 010203040506
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 250000 (0x3d090)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = ccddee
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 500000 (0x7a120)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
@@ -0,0 +1,272 @@
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 12345678 (0xbc614e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 12345678 (0xbc614e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 12345678 (0xbc614e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.1
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 12345678 (0xbc614e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 250 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 12345678 (0xbc614e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 192.168.1.1
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Release
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
NO RESPONSE IS NEEDED FOR DHCPRELEASE
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.2
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.2
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.2
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 250 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 192.168.1.2
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Release
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
NO RESPONSE IS NEEDED FOR DHCPRELEASE
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
|
||||
@@ -0,0 +1,408 @@
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 45 (0x2d)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 45 (0x2d)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 45 (0x2d)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.1
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 45 (0x2d)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 250 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 45 (0x2d)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 192.168.1.1
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Release
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
NO RESPONSE IS NEEDED FOR DHCPRELEASE
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 35 (0x23)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8b6c4
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 35 (0x23)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.2
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8b6c4
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 35 (0x23)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8b6c4
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.2
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 35 (0x23)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.2
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8b6c4
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 250 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 35 (0x23)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 192.168.1.2
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8b6c4
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Release
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
NO RESPONSE IS NEEDED FOR DHCPRELEASE
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 55 (0x37)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 55 (0x37)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 55 (0x37)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.1
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 55 (0x37)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 250 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 55 (0x37)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 192.168.1.1
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Release
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
NO RESPONSE IS NEEDED FOR DHCPRELEASE
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
|
||||
@@ -0,0 +1,272 @@
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 15 [Frame Relay]
|
||||
Hardware Address Length (hlen) = 2
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 12345678 (0xbc614e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 15 [Frame Relay]
|
||||
Hardware Address Length (hlen) = 2
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 12345678 (0xbc614e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 15 [Frame Relay]
|
||||
Hardware Address Length (hlen) = 2
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8c0
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 15 [Frame Relay]
|
||||
Hardware Address Length (hlen) = 2
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.2
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8c0
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 15 [Frame Relay]
|
||||
Hardware Address Length (hlen) = 2
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 12345678 (0xbc614e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.1
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 15 [Frame Relay]
|
||||
Hardware Address Length (hlen) = 2
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 12345678 (0xbc614e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 15 [Frame Relay]
|
||||
Hardware Address Length (hlen) = 2
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8c0
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.2
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 15 [Frame Relay]
|
||||
Hardware Address Length (hlen) = 2
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.2
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8c0
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 250 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 15 [Frame Relay]
|
||||
Hardware Address Length (hlen) = 2
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 192.168.1.2
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8c0
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Release
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
NO RESPONSE IS NEEDED FOR DHCPRELEASE
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 250 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 15 [Frame Relay]
|
||||
Hardware Address Length (hlen) = 2
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 12345678 (0xbc614e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 192.168.1.1
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Release
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
NO RESPONSE IS NEEDED FOR DHCPRELEASE
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
|
||||
@@ -0,0 +1,136 @@
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 65535 (0xffff)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a1b1c2d2e3f3
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 65535 (0xffff)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a1b1c2d2e3f3
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 65535 (0xffff)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a1b1c2d2e3f3
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.1
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 65535 (0xffff)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a1b1c2d2e3f3
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 250 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 65535 (0xffff)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 192.168.1.1
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a1b1c2d2e3f3
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Release
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
NO RESPONSE IS NEEDED FOR DHCPRELEASE
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
|
||||
@@ -0,0 +1,756 @@
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 1 [Ethernet (10Mb)]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 42 (0x2a)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 010102020303
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 1 [Ethernet (10Mb)]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 42 (0x2a)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 010102020303
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 1 [Ethernet (10Mb)]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 42 (0x2a)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 010102020303
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.1
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 1 [Ethernet (10Mb)]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 42 (0x2a)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 010102020303
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.2
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.2
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.2
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 1234 (0x4d2)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 0123456789ab
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 1234 (0x4d2)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.3
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 0123456789ab
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 1234 (0x4d2)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 0123456789ab
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.3
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 1234 (0x4d2)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.3
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 0123456789ab
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 55 (0x37)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 55 (0x37)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.4
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 55 (0x37)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.4
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 55 (0x37)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.4
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 250 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 1 [Ethernet (10Mb)]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 42 (0x2a)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 192.168.1.1
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 010102020303
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Release
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
NO RESPONSE IS NEEDED FOR DHCPRELEASE
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 15 [Frame Relay]
|
||||
Hardware Address Length (hlen) = 2
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 12345678 (0xbc614e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 15 [Frame Relay]
|
||||
Hardware Address Length (hlen) = 2
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 12345678 (0xbc614e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 15 [Frame Relay]
|
||||
Hardware Address Length (hlen) = 2
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 12345678 (0xbc614e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.1
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 15 [Frame Relay]
|
||||
Hardware Address Length (hlen) = 2
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 12345678 (0xbc614e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 250 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 192.168.1.2
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Release
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
NO RESPONSE IS NEEDED FOR DHCPRELEASE
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 250 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 1234 (0x4d2)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 192.168.1.3
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 0123456789ab
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Release
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
NO RESPONSE IS NEEDED FOR DHCPRELEASE
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 250 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 55 (0x37)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 192.168.1.4
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Release
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
NO RESPONSE IS NEEDED FOR DHCPRELEASE
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 5678 (0x162e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 0123456789ab
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 5678 (0x162e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.3
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 0123456789ab
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 5678 (0x162e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 0123456789ab
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.3
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 5678 (0x162e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.3
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 0123456789ab
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
@@ -0,0 +1,560 @@
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 1 [Ethernet (10Mb)]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 42 (0x2a)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 010102020303
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 1 [Ethernet (10Mb)]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 42 (0x2a)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 010102020303
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 1 [Ethernet (10Mb)]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 42 (0x2a)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 010102020303
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.1
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 1 [Ethernet (10Mb)]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 42 (0x2a)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 010102020303
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.2
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.2
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.2
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 1234 (0x4d2)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 0123456789ab
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 1234 (0x4d2)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.3
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 0123456789ab
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 1234 (0x4d2)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 0123456789ab
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.3
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 1234 (0x4d2)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.3
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 0123456789ab
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 55 (0x37)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 55 (0x37)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.4
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 55 (0x37)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.4
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 55 (0x37)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.4
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 250 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 1 [Ethernet (10Mb)]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 42 (0x2a)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 192.168.1.1
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 010102020303
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Release
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
NO RESPONSE IS NEEDED FOR DHCPRELEASE
|
||||
+++++++++++++++++++++++++++++++++++++
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 15 [Frame Relay]
|
||||
Hardware Address Length (hlen) = 2
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 12345678 (0xbc614e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 15 [Frame Relay]
|
||||
Hardware Address Length (hlen) = 2
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 12345678 (0xbc614e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 15 [Frame Relay]
|
||||
Hardware Address Length (hlen) = 2
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 12345678 (0xbc614e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.1
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 15 [Frame Relay]
|
||||
Hardware Address Length (hlen) = 2
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 12345678 (0xbc614e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
@@ -0,0 +1,53 @@
|
||||
++++++++++++++++++++++++++
|
||||
SERVER RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 50 (0x0)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = f0
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.8
|
||||
Server Identifier = 192.168.10.0
|
||||
ERROR: Invalid server ID in request 192.168.10.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
SERVER SENDING 250 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 50 (0x0)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = f0
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP NAK
|
||||
Server Identifier = 192.168.1.0
|
||||
@@ -0,0 +1,212 @@
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 12345678 (0xbc614e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 12345678 (0xbc614e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 12345678 (0xbc614e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.1
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 12345678 (0xbc614e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.2
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.2
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.2
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
@@ -0,0 +1,106 @@
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 1 [Ethernet (10Mb)]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 42 (0x2a)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 010102020303
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 1 [Ethernet (10Mb)]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 42 (0x2a)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 010102020303
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 1 [Ethernet (10Mb)]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 42 (0x2a)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 010102020303
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.1
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 1 [Ethernet (10Mb)]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 42 (0x2a)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 010102020303
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
@@ -0,0 +1,475 @@
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 1 [Ethernet (10Mb)]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 42 (0x2a)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 010102020303
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 1 [Ethernet (10Mb)]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 42 (0x2a)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 010102020303
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 1 [Ethernet (10Mb)]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 42 (0x2a)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 010102020303
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.1
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 1 [Ethernet (10Mb)]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 42 (0x2a)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 010102020303
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.2
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.2
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 7 [ARCNET]
|
||||
Hardware Address Length (hlen) = 1
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 87654321 (0x5397fb1)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.2
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 1234 (0x4d2)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 0123456789ab
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 1234 (0x4d2)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.3
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 0123456789ab
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 1234 (0x4d2)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 0123456789ab
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.3
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 1234 (0x4d2)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.3
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 0123456789ab
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 55 (0x37)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 55 (0x37)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.4
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 55 (0x37)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.4
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 18 [Fibre Channel]
|
||||
Hardware Address Length (hlen) = 3
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 55 (0x37)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.4
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0d1e2
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
CLIENT SENDING 244 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 15 [Frame Relay]
|
||||
Hardware Address Length (hlen) = 2
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 12345678 (0xbc614e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
++++++++++++++++++++++++++
|
||||
CLIENT RECEIVED 250 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 15 [Frame Relay]
|
||||
Hardware Address Length (hlen) = 2
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 12345678 (0xbc614e)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = c0a8
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP NAK
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
@@ -0,0 +1,51 @@
|
||||
++++++++++++++++++++++++++
|
||||
SERVER RECEIVED 244 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 1 [Ethernet (10Mb)]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 0 (0x0)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 010102020303
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Discover
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
SERVER SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 1 [Ethernet (10Mb)]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 0 (0x0)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 010102020303
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Offer
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
@@ -0,0 +1,53 @@
|
||||
++++++++++++++++++++++++++
|
||||
SERVER RECEIVED 256 BYTES:
|
||||
++++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 1 [BOOTREQUEST]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 0 (0x0)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 0.0.0.0
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 0123456789ab
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP Request
|
||||
Request = 192.168.1.1
|
||||
Server Identifier = 192.168.1.0
|
||||
|
||||
+++++++++++++++++++++++++
|
||||
SERVER SENDING 256 BYTES:
|
||||
+++++++++++++++++++++++++
|
||||
|
||||
------------------------------------------------------
|
||||
BOOTP Options
|
||||
------------------------------------------------------
|
||||
Op Code (op) = 2 [BOOTREPLY]
|
||||
Hardware Type (htype) = 6 [IEEE 802 Networks]
|
||||
Hardware Address Length (hlen) = 6
|
||||
Hops (hops) = 0
|
||||
Transaction ID (xid) = 0 (0x0)
|
||||
Seconds (secs) = 0 Days, 0:00:00
|
||||
Flags (flags) = 0
|
||||
Client IP Address (ciaddr) = 0.0.0.0
|
||||
Your IP Address (yiaddr) = 192.168.1.1
|
||||
Server IP Address (siaddr) = 0.0.0.0
|
||||
Relay IP Address (giaddr) = 0.0.0.0
|
||||
Client Ethernet Address (chaddr) = 0123456789ab
|
||||
------------------------------------------------------
|
||||
DHCP Options
|
||||
------------------------------------------------------
|
||||
Magic Cookie = [OK]
|
||||
Message Type = DHCP ACK
|
||||
IP Address Lease Time = 30 Days, 0:00:00
|
||||
Server Identifier = 192.168.1.0
|
||||
Executable
+93
@@ -0,0 +1,93 @@
|
||||
#!/bin/bash
|
||||
|
||||
EXE="../dhcps"
|
||||
|
||||
function run_test {
|
||||
|
||||
# parameters
|
||||
TAG=$1
|
||||
shift
|
||||
ARGS=$1
|
||||
shift
|
||||
|
||||
PTAG=$(printf '%-30s' "$TAG")
|
||||
if [[ $(echo $TAG | cut -d'_' -f1) == $SKIP_C ||
|
||||
$(echo $TAG | cut -d'_' -f1) == $SKIP_B ||
|
||||
$(echo $TAG | cut -d'_' -f1) == $SKIP_A ]] ; then
|
||||
echo "$PTAG SKIPPED (previous phases not complete)"
|
||||
return
|
||||
fi
|
||||
|
||||
# file paths
|
||||
OUTPUT=outputs/$TAG.txt
|
||||
DIFF=outputs/$TAG.diff
|
||||
EXPECT=expected/$TAG.txt
|
||||
VALGRND=valgrind/$TAG.txt
|
||||
|
||||
SARGS="-s 1"
|
||||
# run test and compare output to the expected version
|
||||
if [[ $TAG == "A_threads" ]] ; then
|
||||
SARGS="-t ${SARGS}0"
|
||||
fi
|
||||
if [[ $(echo $TAG | cut -d'_' -f1) == 'D' ]] ; then
|
||||
$EXE $SARGS >"$OUTPUT" 2>/dev/null &
|
||||
else
|
||||
$EXE $SARGS >/dev/null 2>&1 &
|
||||
fi
|
||||
sleep .5
|
||||
if [[ $TAG == "A_threads" ]] ; then
|
||||
./threads 2>/dev/null >"$OUTPUT"
|
||||
elif [[ $(echo $TAG | cut -d'_' -f1) == 'D' ]] ; then
|
||||
./client $ARGS >/dev/null 2>&1
|
||||
else
|
||||
./client $ARGS 2>/dev/null >"$OUTPUT"
|
||||
fi
|
||||
sleep 1.5
|
||||
|
||||
diff -u "$OUTPUT" "$EXPECT" >"$DIFF"
|
||||
if [ -s "$DIFF" ]; then
|
||||
|
||||
if [[ $TAG == "A_threads" ]] ; then
|
||||
echo "$PTAG FAIL - Command line: $EXE $SARGS ; ./threads $ARGS"
|
||||
else
|
||||
echo "$PTAG FAIL - Command line: $EXE $SARGS ; ./client $ARGS"
|
||||
fi
|
||||
if [[ $(echo $PTAG | cut -d'_' -f1) == 'D' ]] ; then
|
||||
SKIP_C="C"
|
||||
SKIP_B="B"
|
||||
SKIP_A="A"
|
||||
elif [[ $(echo $PTAG | cut -d'_' -f1) == 'C' ]] ; then
|
||||
SKIP_B="B"
|
||||
SKIP_A="A"
|
||||
elif [[ $(echo $PTAG | cut -d'_' -f1) == 'B' ]] ; then
|
||||
SKIP_A="A"
|
||||
fi
|
||||
else
|
||||
echo "$PTAG pass"
|
||||
fi
|
||||
|
||||
# run valgrind
|
||||
#valgrind $EXE -s 2 >"$VALGRND" 2>&1 &
|
||||
#sleep 1
|
||||
#./client $ARGS >/dev/null 2>&1
|
||||
#sleep 2
|
||||
}
|
||||
|
||||
# initialize output folders
|
||||
mkdir -p outputs
|
||||
mkdir -p valgrind
|
||||
rm -f outputs/* valgrind/*
|
||||
|
||||
# run individual tests
|
||||
source itests.include
|
||||
|
||||
# check for memory leaks
|
||||
#LEAK=`cat valgrind/*.txt | grep 'definitely lost' | grep -v ' 0 bytes in 0 blocks'`
|
||||
#LEAK=
|
||||
#if [ -z "$LEAK" ]; then
|
||||
# echo "No memory leak found."
|
||||
#else
|
||||
# echo "Memory leak(s) found. See files listed below for details."
|
||||
# grep 'definitely lost' valgrind/*.txt | sed -e 's/:.*$//g' | sed -e 's/^/ - /g'
|
||||
#fi
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
# list of integration tests
|
||||
# format: run_test <TAG> <ARGS>
|
||||
# <TAG> used as the root for all filenames (i.e., "expected/$TAG.txt")
|
||||
# <ARGS> command-line arguments to test
|
||||
|
||||
run_test D_eth_disc "data/eth-disc"
|
||||
run_test D_ieee_req "data/ieee-req"
|
||||
|
||||
run_test C_eth_dhcp "data/eth-dhcp"
|
||||
run_test C_arc_two "data/arc-two"
|
||||
run_test C_multi "data/multi-dhcp"
|
||||
#run_test C_arc_bad "data/arc-req-bad"
|
||||
|
||||
run_test B_ieee_release "data/ieee-release"
|
||||
run_test B_arc_two "data/arc-two-rel"
|
||||
run_test B_frame_interleave "data/frame-inter"
|
||||
run_test B_fibre_repeat "data/fibre-repeat"
|
||||
run_test B_multi_reuse "data/multi-reuse"
|
||||
run_test B_multi_release "data/multi-release"
|
||||
|
||||
run_test A_threads ""
|
||||
@@ -0,0 +1,29 @@
|
||||
#include <arpa/inet.h>
|
||||
#include <assert.h>
|
||||
#include <check.h>
|
||||
#include <fcntl.h>
|
||||
#include <inttypes.h>
|
||||
#include <netdb.h>
|
||||
#include <netinet/in.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <sys/socket.h>
|
||||
#include <unistd.h>
|
||||
|
||||
START_TEST (C_test_template)
|
||||
{
|
||||
int x = 5;
|
||||
int y = 5;
|
||||
ck_assert_int_eq (x, y);
|
||||
}
|
||||
END_TEST
|
||||
|
||||
void public_tests (Suite *s)
|
||||
{
|
||||
TCase *tc_public = tcase_create ("Public");
|
||||
tcase_add_test (tc_public, C_test_template);
|
||||
suite_add_tcase (s, tc_public);
|
||||
}
|
||||
|
||||
Executable
+53
@@ -0,0 +1,53 @@
|
||||
#!/bin/bash
|
||||
|
||||
STYLE="gnu"
|
||||
|
||||
IGNORE=()
|
||||
FAIL=0
|
||||
|
||||
function comp_file {
|
||||
|
||||
SRC=$1
|
||||
SRC_NAME=$2
|
||||
|
||||
# file paths
|
||||
FORMAT=ckstyle/${SRC_NAME}.$STYLE
|
||||
DIFF=ckstyle/${SRC_NAME}.diff
|
||||
|
||||
# run clang-format and compare results
|
||||
clang-format --style=$STYLE $source > $FORMAT
|
||||
diff -u $SRC $FORMAT >$DIFF
|
||||
|
||||
PTAG=$(printf '%-30s' "$SRC_NAME")
|
||||
if [ -s $DIFF ]; then
|
||||
echo "$PTAG FAIL (see $DIFF for details)"
|
||||
FAIL=1
|
||||
else
|
||||
echo "$PTAG pass"
|
||||
rm $DIFF
|
||||
fi
|
||||
rm $FORMAT
|
||||
}
|
||||
|
||||
mkdir -p ckstyle
|
||||
rm -f ckstyle/*
|
||||
|
||||
for source in $(ls ../*.c ../*.h) ; do
|
||||
SKIP=0
|
||||
src=$(basename $source)
|
||||
for ignore in ${IGNORE[*]} ; do
|
||||
if [ "$src" = "$ignore" ] ; then
|
||||
SKIP=1
|
||||
fi
|
||||
done
|
||||
if [ $SKIP = 0 ] ; then
|
||||
comp_file $source $src
|
||||
fi
|
||||
done
|
||||
|
||||
if [ $FAIL != 0 ] ; then
|
||||
echo "Code that does not adhere to GNU standards will not be accepted."
|
||||
echo "You must fix these files before submission."
|
||||
else
|
||||
echo "Code correctly adheres to required style."
|
||||
fi
|
||||
@@ -0,0 +1,32 @@
|
||||
#include <stdbool.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdint.h>
|
||||
#include <assert.h>
|
||||
#include <time.h>
|
||||
|
||||
#include <check.h>
|
||||
|
||||
extern void public_tests (Suite *s);
|
||||
|
||||
Suite * test_suite (void)
|
||||
{
|
||||
Suite *s = suite_create ("Default");
|
||||
public_tests (s);
|
||||
return s;
|
||||
}
|
||||
|
||||
void run_testsuite ()
|
||||
{
|
||||
Suite *s = test_suite ();
|
||||
SRunner *sr = srunner_create (s);
|
||||
srunner_run_all (sr, CK_NORMAL);
|
||||
srunner_free (sr);
|
||||
}
|
||||
|
||||
int main (void)
|
||||
{
|
||||
srand((unsigned)time(NULL));
|
||||
run_testsuite ();
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
Executable
BIN
Binary file not shown.
Reference in New Issue
Block a user