  LilYoda Feline with squirel personality disorder Premium join:2004-09-02 Mountains
1 edit | reply to LilYoda [Config] QoS+VoIP on a Cisco - Charter HSI
Just for info, if you have Charter HSI, here's what the connection to it would look like:
! The below assumes you want to make your router 192.168.254.253 ! (replace ethernet0 and ethernet1 by your outside and inside interfaces) ! service dhcp ! interface Ethernet0 description --- Connected to broadband ip address dhcp ip nat outside arp timeout 300 ! interface Ethernet1 ip nat inside ! ip access-list standard Networks_2B_NATed permit 192.168.254.0 0.0.0.255 ! ip nat inside source list Networks_2B_NATed interface Ethernet0 overload In case you want to host servers, here are 2 sample commands for port forwarding (making a service on your LAN available to the Internet)
! Line below is for making the TeamSpeak server (192.168.254.1) ! reachable from the outside world (this is an exemple of port forwarding) ip nat inside source static udp 192.168.254.1 8767 interface Ethernet0 8767 ! ! Line below is for making the Squid proxy (192.168.254.1) ! reachable from the outside world (this is an exemple of port forwarding) ip nat inside source static tcp 192.168.254.1 8080 interface Ethernet0 8080 |