Scaling IP Addresses

From Mycomputer Notes

(Difference between revisions)
(Static Translations)
(Static Translations)
Line 8: Line 8:
To configured static inside source address translation perform the task below:
To configured static inside source address translation perform the task below:
-
# - Establish static translation between an inside local address and an insie global address in Global Configuration Mode.
+
* - Establish static translation between an inside local address and an insie global address in Global Configuration Mode.
  Router(Config)#ip nat inside source static <LOCAL-IP> <GLOBAL-IP>
  Router(Config)#ip nat inside source static <LOCAL-IP> <GLOBAL-IP>
-
# - Enter the interface mode and specify the inside interface.
+
* - Enter the interface mode and specify the inside interface & Mark the interface as connected to the inside
-
Mark the interface as connected to the inside
+
  Router(config)#interface <TYPE> <NUMBER>
  Router(config)#interface <TYPE> <NUMBER>
  Router(config)#ip nat inside
  Router(config)#ip nat inside
 +
 +
* - Specify the outside inteface & Mark the interface as connected to the outised
 +
 +
  Router(config)#interface <TYPE> <NUMBER>
 +
  Router(config)#ip nat outised

Revision as of 20:52, 13 November 2006


Configuring NAT & PAT

Static Translations

Stattic Trasnlation are entered direclty into the configuration and are always entered in the translation table. To configured static inside source address translation perform the task below:

  • - Establish static translation between an inside local address and an insie global address in Global Configuration Mode.
Router(Config)#ip nat inside source static <LOCAL-IP> <GLOBAL-IP>
  • - Enter the interface mode and specify the inside interface & Mark the interface as connected to the inside
Router(config)#interface <TYPE> <NUMBER>
Router(config)#ip nat inside
  • - Specify the outside inteface & Mark the interface as connected to the outised
 Router(config)#interface <TYPE> <NUMBER>
 Router(config)#ip nat outised
Personal tools