This project demonstrates an SNMP agent that runs EK-TM4C1294XL evaluation board.

Instructions to run the demo:

- Compile the project and run a debug session
- Connect a terminal (115200 bauds, no parity, no flow control) to the virtual COM port of the ICD debugger to output log messages
- Plug Ethernet cable
- The board acquires an IPv4 address (using DHCP), a link-local IPv6 address and a global IPv6 address (using SLAAC)
- Pick up the IP addresses in the logs (for example 192.168.0.150)
- Access to the SNMP agent using your favorite SNMP manager (iReasoning MIB browser for example)
- Here are some useful Net-SNMP command lines:

snmpwalk -v1 -c "public" 192.168.0.150 1.3
snmpbulkwalk -v2c -c "public" 192.168.0.150 -Cr10 1.3
snmpbulkwalk -v3 -n "" -l authNoPriv -u "usr-md5-none" -a MD5 -A "authkey1" -Cr10 192.168.0.150 1.3
snmpbulkwalk -v3 -n "" -l authPriv -u "usr-md5-des" -a MD5 -A "authkey1" -x DES -X "privkey1" -Cr10 192.168.0.150 1.3

snmpget -v1 -c "public" 192.168.0.150  1.3.6.1.2.1.1.3.0
snmpget -v2c -c "public" 192.168.0.150  1.3.6.1.2.1.1.3.0
snmpget -v3 -n "" -l authNoPriv -u "usr-md5-none" -a MD5 -A "authkey1" 192.168.0.150  1.3.6.1.2.1.1.3.0
snmpget -v3 -n "" -l authPriv -u "usr-md5-des" -a MD5 -A "authkey1" -x DES -X "privkey1" 192.168.0.150 1.3.6.1.2.1.1.3.0
