Here I have used two routers as shown in diagram. Ports I used to map statically to public are as follows:
To establish outbound NetMeeting connections through a natting, the natting must be configured to do the following:
* Pass through primary TCP connections on ports 522, 389, 1503, 1720 and 1731.
* Pass through secondary UDP connections on dynamically assigned ports (1024-65535).
For furhtur info. u can access this site: http://support.microsoft.com/kb/158623
static natting configuration on both routers are nearly same:
On R0:
ip nat inside source static tcp 192.168.1.3 389 10.1.1.1 389 extendable
ip nat inside source static tcp 192.168.1.3 522 10.1.1.1 522 extendable
ip nat inside source static tcp 192.168.1.3 1503 10.1.1.1 1503 extendable
ip nat inside source static tcp 192.168.1.3 1720 10.1.1.1 1720 extendable
ip nat inside source static tcp 192.168.1.3 1731 10.1.1.1 1731 extendable
On R1:
ip nat inside source static tcp 192.168.56.200 389 10.1.1.2 389 extendable
ip nat inside source static tcp 192.168.56.200 522 10.1.1.2 522 extendable
ip nat inside source static tcp 192.168.56.200 1503 10.1.1.2 1503 extendable
ip nat inside source static tcp 192.168.56.200 1720 10.1.1.2 1720 extendable
ip nat inside source static tcp 192.168.56.200 1731 10.1.1.2 1731 extendable
Note:
I didn't check audio after configuring these above commands on routers. Pls, feel free to give comments on if you have any update on this
Commands for applying CAR on both routers on serial interfaces:
interface Serial1/0
ip address 10.1.1.2 255.255.255.252
ip nat outside
ip virtual-reassembly
rate-limit input access-group 1 256000 64000 64000 conform-action transmit exceed-action drop
rate-limit output access-group 1 256000 64000 64000 conform-action transmit exceed-action drop
serial restart-delay 0
end
No comments:
Post a Comment