#!/bin/sh echo "Content-type: text/html" echo echo echo "uC5272 network configuration" echo "

uC5272 network configuration

" echo echo "

Network interface configuration:

" echo "
"
ifconfig
echo "
" echo "

Routing table:

" echo "
"
route -n
echo "
" echo "

resolv.conf:

" echo "
"
cat /etc/resolv.conf
echo "
" echo echo echo ""