home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 June / ccd0605.iso / Software / Shareware / Comunicatii / nat32 / script / WEB < prev   
Text File  |  2003-10-06  |  240b  |  15 lines

  1. #!tcl 
  2.  
  3. # WEB Server mappings
  4. if {$argc == 0} { 
  5.     error {Usage: web IPaddress|off}
  6. set addr [lindex $argv 0] 
  7. if {$addr == "off"} { 
  8.     exec "ppmaps delete tcp 80"
  9. } else { 
  10.     exec "ppmap add tcp 80 $addr 80"
  11. }
  12.