home *** CD-ROM | disk | FTP | other *** search
- #!tcl
-
- #
- # Net2Phone mappings
- #
- if {$argc != 2} {
- error {Usage: n2p IPaddress|off Port}
- }
- set addr [lindex $argv 0]
- set port [lindex $argv 1]
-
- if {$addr == "off"} {
- exec "umaps delete $port"
- exec "ppmaps delete udp $port"
- } else {
- exec "umap add 6801 1"
- exec "ppmap add udp $port $addr $port"
- }
-