tazpanel rev 133

network.cgi: add anchors
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 16 13:46:45 2011 +0200 (2011-04-16)
parents c07de0cc4dbc
children fbe602f8bdd6
files network.cgi
line diff
     1.1 --- a/network.cgi	Sat Apr 16 13:39:13 2011 +0200
     1.2 +++ b/network.cgi	Sat Apr 16 13:46:45 2011 +0200
     1.3 @@ -227,6 +227,7 @@
     1.4  
     1.5  $(list_network_interfaces)
     1.6  
     1.7 +<a name="hosts"></a>
     1.8  <h3>$(gettext "Hosts")</h3>
     1.9  <pre>
    1.10  $(cat /etc/hosts)
    1.11 @@ -241,31 +242,37 @@
    1.12  </form>
    1.13  
    1.14  
    1.15 +<a name="ifconfig"></a>
    1.16  <h3>$(gettext "Output of ") ifconfig</h3>
    1.17  <pre>
    1.18  $(ifconfig)
    1.19  </pre>
    1.20  
    1.21 +<a name="routing"></a>
    1.22  <h3>`gettext "Routing table"`</h3>
    1.23  <pre>
    1.24  $(route -n)
    1.25  </pre>
    1.26  
    1.27 +<a name="dns"></a>
    1.28  <h3>`gettext "Domain name resolution"`</h3>
    1.29  <pre>
    1.30  $(cat /etc/resolv.conf)
    1.31  </pre>
    1.32  
    1.33 +<a name="arp"></a>
    1.34  <h3>`gettext "ARP table"`</h3>
    1.35  <pre>
    1.36  $(arp)
    1.37  </pre>
    1.38  
    1.39 +<a name="connections"></a>
    1.40  <h3>`gettext "IP Connections"`</h3>
    1.41  <pre>
    1.42  $(netstat -anp 2> /dev/null | sed '/UNIX domain sockets/,$d')
    1.43  </pre>
    1.44  
    1.45 +<a name="scan"></a>
    1.46  <h3>`gettext "Local ports scan"`</h3>
    1.47  <pre>
    1.48  $(pscan -b localhost)