مترجم آدرس های شبکه ios سیسکو.سیسکو.شبکه

مترجم آدرسهای شبکهِ ios ِ سیسکو

۱۹۱ بازديد

مترجم آدرسهای شبکهِ ios  ِ سیسکو

مترجم آدرسهای شبکهِ ios ِ سیسکو

این تحقیق شامل ترجمه متن زیر میباشد

Cisco IOS Network Address Translation

Overview

In its simplest configuration, the Network Address Translator (NAT) operates on a router connecting two networks together; one of these networks (designated as inside) is addressed with either private or obsolete addresses that need to be converted into legal addresses before packets are forwarded onto the other network (designated as outside). The translation operates in conjunction with routing, so that NAT can simply be enabled on a customer-side Internet access router when translation is desired.

Use of a NAT device provides RFC 1631-style network address translation on the router platform. The goal of NAT is to provide functionality as if the private network had globally unique addresses and the NAT device was not present. RFC 1631 represents a subset of Cisco IOS NAT functionality.

Cisco IOS NAT supports "bi-directional translation" through the simultaneous use of "inside source" and "outside source" translations.

Terminology


Inside

Set of networks subject to translation

Outside

All other addresses. Usually these are valid addresses located on the Internet.


Figure 2
NAT Terminology « Inside Addressing»

  • Inside local: configured IP address assigned to a host on the inside network. Address may be globally unique, allocated out of the private address space defined in RFC 1918, or might be officially allocated to another organization
  • Inside global: the IP address of an inside host as it appears to the outside network, "Translated IP Address". Addresses can be allocated from a globally unique address space, typically provided by the ISP (if the enterprise is connected to the global Internet)


Figure 3
NAT Terminology "Outside Addressing"

  • Outside local: the IP address of an outside host as it appears to the inside network. These addresses can be allocated from the RFC 1918 space if desired
  • Outside global: the configured IP address assigned to a host in the outside network

Simple Translation Entry

Translation entry that maps one IP address to another

Extended Translation Entry

Translation entry that maps one IP address and port pair to another

Main Features

  • Static Address Translation—Telnet 207.33.94.1
    The user can establish a one-to-one mapping between local and global addresses

Users can also configure Static address translations to the port level, and use the remainder of the IP address for other translations. Typically where you are performing Port Address Translation (PAT)

  • Dynamic Address Translation
    The user can establish dynamic mapping between the local and global addresses. This is done by describing the local addresses to be translated and the pool of addresses from which to allocate global addresses, and associating the two.
  • Match Host
    The ability to configure NAT to assign the same Host portion of an IP Address and only translate the Network prefix portion of the IP Address. Useful where you are using the host portion as a means to identify or number users uniquely
  • Port Address Translation (PAT)

Figure 4
Basic Concepts of PAT

Figure 5
Unique Source Port per Translation Entry

Several internal addresses can be NATed to only one or a few external addresses by using a feature called Port Address Translation (PAT) which is also referred to as "overload", a subset of NAT functionality.

PAT uses unique source port numbers on the Inside Global IP address to distinguish between translations. Because the port number is encoded in 16 bits, the total number could theoretically be as high as 65,536 per IP address. PAT will attempt to preserve the original source port, if this source port is already allocated PAT will attempt to find the first available port number starting from the beginning of the appropriate port group 0-5111, 512-1023 or 1024-65535. If there is still no port available from the appropriate group and more than one IP address is configured, PAT will move to the next IP address and try to allocate the original source port again. This continues until it runs out of available ports and IP addresses.

  • Destination Address Rotary Translation
    A dynamic form of destination translation can be configured for some outside-to-inside traffic. Once a mapping is set up, a destination address matching one of those on an access list will be replaced with an address from a rotary pool. Allocation is done in a round-robin basis, performed only when a new connection is opened from the outside to the inside. All non-TCP traffic is passed untranslated (unless other translations are in effect).

This feature was designed to provide protocol translation load distribution. It is not designed nor intended to be used as a substitute technology for Ciscos LocalDirector product. Destination address rotary translation should not be used to provide web service load balancing because, like vanilla DNS, it knows nothing about service availability. As a result, if a web server were to become offline, the destination address rotary translation feature would continue to send requests to the downed server.

For additional information, please visit:

http://www.cisco.com/warp/public/732/Tech/ipservices/docs/algs.pdf

Configuration Commands

Interface Configuration Commands

ip nat { inside | outside }

Interfaces need to be marked whether they are on the inside or the outside. Only packets arriving on a marked interface will be subject to translation.

Global Configuration Commands

  • Defining a pool

ip nat pool { netmask

| prefix-length } [ type { rotary } ]

Defines a pool of addresses using start address, end address, and netmask. These addresses will be allocated as needed.

  • Enabling translation of inside source addresses

ip nat inside source { list pool [overload] |

static }

The first form enables dynamic translation. Packets from addresses that match those on the simple access list are translated using global addresses allocated from the named pool. The optional keyword overload enables port translation for UDP and TCP. The term overload is equivalent to Port Address Translation (PAT), as used on the Combinet C7x0 product.

The second form of the command sets up a single static translation.

  • Enabling translation of inside destination addresses

ip nat inside destination { list pool |

static }

This command is similar to the source translation command. For dynamic destination translation to make any sense, the pool should be a rotary-type pool.

  • Enabling translation of outside source addresses

ip nat outside source { list pool | static }

The first form (list..pool..) enables dynamic translation. Packets from addresses that match those on the simple access list are translated using local addresses allocated from the named pool.

The second form (static) of the command sets up a single static translation.

Configuring translation timeouts

ip nat translation timeout

Dynamic translations time out after a period of non-use. When port translation is not configured, translation entries time out after 24 hours. This time can be adjusted with the above command or the following variations:

ip nat translation udp-timeout

ip nat translation dns-timeout

ip nat translation tcp-timeout

ip nat translation finrst-timeout

When port translation is configured, there is finer control over translation entry timeouts, because each entry contains more context about the traffic using it. Non-DNS UDP translations time out after 5 minutes; DNS times out in 1 minute. TCP translations time out after 24 hours, unless a RST or FIN is seen on the stream, in which case it times out in 1 minute.

Exec Commands

  • Showing active translations

show ip nat translations [ verbose ]

  • Showing translation statistics

show ip nat statistics

  • Clearing dynamic translations

clear ip nat translation *

Clears all dynamic translations.

clear ip nat translation

Clears a simple translation.

clear ip nat translation <local-ip>

Clears a particular dynamic translation.

  • Debugging

debug ip nat [ ] [ detailed ]

Configuration Examples

The following sample configuration translates between inside hosts addressed from either the192.168.1.0or192.168.2.0nets to the globally-unique171.69.233.208/28network.

ip nat pool net-20 171.69.233.208 171.69.233.223 netmask 255.255.255.240

ip nat inside source list 1 pool net-20

!

interface Ethernet0

ip address 171.69.232.182 255.255.255.240

ip nat outside

!

interface Ethernet1

ip address 192.168.1.94 255.255.255.0

ip nat inside

!

access-list 1 permit 192.168.1.0 0.0.0.255

access-list 1 permit 192.168.2.0 0.0.0.255

The next sample configuration translates between inside hosts addressed from the9.114.11.0net to the globally unique171.69.233.208/28network. Packets from outside hosts addressed from9.114.11.0net (the "true"9.114.11.0net) are translated to appear to be from net10.0.1.0/24.

ip nat pool net-20 171.69.233.208 171.69.233.223 netmask 255.255.255.240

ip nat pool net-10 10.0.1.0 10.0.1.255 netmask 255.255.255.0

ip nat inside source list 1 pool net-20

ip nat outside source list 1 pool net-10

!

interface Ethernet0

ip address 171.69.232.182 255.255.255.240

ip nat outside

!

interface Ethernet1

ip address 9.114.11.39 255.255.255.0

ip nat inside

!

access-list 1 permit 9.114.11.0 0.0.0.255

Feature Enhancements

  • More flexible pool configuration:

The pool configuration syntax has been extended to allow discontiguous ranges of addresses. The following syntax is now allowed:

ip nat pool { netmask | prefix-length } [ type { rotary } ]

This command will put the user into IP NAT Pool configuration mode, where a sequence of address ranges can be configured. There is only one command in this mode:

address

Example:

Router(config)#ip nat pool fred prefix-length 24

Router(config-ipnat-pool)#address 171.69.233.225 171.69.233.226

Router(config-ipnat-pool)#address 171.69.233.228 171.69.233.238

This configuration creates a pool containing addresses 171.69.233.225-226 and 171.69.233.228-238 (171.69.233.227 has been omitted).

  • Translating to interfaces address:

As a convenience for users wishing to translate all inside addresses to the address assigned to an interface on the router, the NAT code allows one to simply name the interface when configuring the dynamic translation rule:

ip nat inside source list interface overload

If there is no address on the interface, or it the interface is not up, no translation will occur.

Example:

ip nat inside source list 1 interface Serial0 overload

  • Static translations with ports:

When translating addresses to an interfaces address, outside-initiated connections to services on the inside network (like mail) will require additional configuration to send the connection to the correct inside host. This command allows the user to map certain services to certain inside hosts.

ip nat inside source static { tcp | udp }

Example:

ip nat inside source static tcp 192.168.10.1 25 171.69.232.209 25

In this example, outside-initiated connections to the SMTP port (25) will be sent to the inside host 192.168.10.1.

  • Support for route maps:

The dynamic translation command can now specify a route-map to be processed instead of an access-list. A route-map allows the user to match any combination of access-list, next-hop IP address, and output interface to determine which pool to use:

ip nat inside source route-map pool

Example:

ip nat pool provider1-space 171.69.232.1 171.69.232.254 prefix-length 24

ip nat pool provider2-space 131.108.43.1 131.108.43.254 prefix-length 24

ip nat inside source route-map provider1-map pool provider1-space

ip nat inside source route-map provider2-map pool provider2-space

interface Serial0/0

ip nat outside

interface Serial0/1

ip nat outside

interface Fddi1/0

ip nat inside

route-map provider1-map permit 10

match ip address 1

match interface Serial0/0

route-map provider2-map permit 10

match ip address 1

match interface Serial0/1

  • "Extendable" static translations:

The extendable keyword allows the user to configure several ambiguous static translations, where an ambiguous translations are translations with the same local or global address.

ip nat inside source static extendable

Some customers want to use more than one service provider and translate into each providers address space. You can use route-maps to base the selection of global address pool on output interface as well as an access-list match. Following is an example:

ip nat pool provider1-space ...

ip nat pool provider2-space ...

ip nat inside source route-map provider1-map pool provider1-space

ip nat inside source route-map provider2-map pool provider2-space

route-map provider1-map permit 10

match ip address 1

match interface Serial0/0

route-map provider2-map permit 10

match ip address 1

match interface Serial0/1

Once that is working, they might also want to define static mappings for a particular host using each providers address space. The software does not allow two static translations with the same local address, though, because it is ambiguous from the inside. The router will accept these static translations and resolve the ambiguity by creating full translations (all addresses and ports) if the static translations are marked as "extendable". For a new outside-to-inside flow, the appropriate static entry will act as a template for a full translation. For a new inside-to-outside flow, the dynamic route-map rules will be used to create a full translation.

  • Autoaliasing of Pool Addresses:

Many customers want to configure the NAT software to translate their local addresses to global addresses allocated from unused addresses from an attached subnet. This requires that the router answer ARP requests for those addresses so that packets destined for the global addresses are accepted by the router and translated. (Routing takes care of this packet delivery when the global addresses are allocated from a virtual network which isnt connected to anything.) When a NAT pool used as an inside global or outside local pool consists of addresses on an attached subnet, the software will generate an alias for that address so that the router will answer ARPs for those addresses.

This automatic aliasing also occurs for inside global or outside local addresses in static entries. It can be disabled for static entries can be disabled by using the "no-alias" keyword:.

ip nat inside source static no-alias

  • Host Number Preservation:

For ease of network management, some sites wish to translate prefixes, not addresses. That is, they wish the translated address to have the same host number as the original address. Of course, the two prefixes must be of the same length. This feature can be enabled by configuring dynamic translation as usual, but configuring the address pool to be of type "match-host":

ip nat pool fred prefix-length type match-host

  • Translation Timeout Improvements:

The following new timeouts have been implemented for extended translation entries:

ip nat translation ?

icmp-timeout Specify timeout for NAT ICMP flows

syn-timeout Specify timeout for NAT TCP flows after a SYN and no further data

  • Translation Entry Limit:

Using the following command, Cisco IOS NAT can be configured to limit the number of translation entries it creates. The default is that there is no limit.

ip nat translation max-entries

Frequently Asked Questions

For More Information

NAT

Visit the main CCO NAT Page.

Refer to the "Configure Network Address Translation (NAT)" section in the Configuring IP Addressing documentation.

RFCs

For information about the RFCs referenced in this document, see:

  • Primary and Secondary RFC Repositories, a Technical Tip that explains where and how to obtain RFCs.
  • List of Cisco-Supported RFCs, a list of RFCs supported by Ciscos system software as of release 10.0(1).
  • RFCs, Standards and Technical Publications, an index of requests for comment.

Additional Informaiton

http://www.cisco.com/pcgi-bin/Support/PSP/psp_view.pl?p=Internetworking:NAT

1 Group starts at 0 for ICMP, but 1 for all other applications. As of DDTS CSCdm05636 the number of Port groups changed from 4 to the 3 outlined above

مترجم آدرسهای شبکهِiosِ سیسکو

مترجم آدرس شبکه در ساده ترین حالتش بر روی مسیر یابی که دو شبکه را به هم متصل می‌کند عمل می‌کند؛ یکی از این شبکه ها (تعین شده بعنوان داخلی ) بصورت خصوصی یا غیر متداول آدرس دهی می‌شود که باید این آدرس به یک آدرس قانونی و متداول تبدیل شودقبل از اینکه بسته های اطلاعاتی به سمت شبکه دیگر(تعیین شده بعنوان شبکه بیرونی ) فرستاده شود . ترجمه مرتبط با مسیر یابی عمل می‌کند ، بطوریکه اگر ترجمه مطلوب باشد مترجم آدرس شبکه براحتی می‌تواند بر روی مسیر یاب یک سرویس گیرنده اینترنت فعال شود .

استفاده از وسایل ترجمه در RFC 1631 ( request for comment ) ( درخواست برای توضیح ) آمده است - شیوه ترجمه آدرس در مسیر یاب . هدف مترجم آدرس شبکه ایجاد یک عاملیت برای شبکه خصوصی است که عموماً آدرسهای منحصر بفردی دارد و مترجم آدرس شبکه نیز در آن موجود نیست .RFC 1631 یک زیر مجموعه از اصول مترجم آدرس شبکه های IOS سیسکو را ارائه میکند .

مترجم IOS سیسکو ترجمه دوسویه را از طریق استفاده همزمان از منابع داخلی و خارجی ترجمه پشتیبانی می‌کند .

Terminology : واژگان فنی

شکل 1 – مفاهیم مترجم آدرس شبکه :

Inside ( دا خلی ) :

مجموعه ای از مطالب شبکه برای ترجمه .

Outside ( خارجی ) :

تمام آدرسهای دیگر .معمولاً اینها آدرسهای معتبر در اینترنت هستند .

شکل 2 –

( واژه های فنی مترجم آدرسهای شبکه )

( NAT terminology ) « آدرس دهی داخلی » :

محلی داخلی (inside local ) :

آدرس IP پیکر بندی شده نسبت داده شده به یک میزبان در داخل شبکه .آدرس ممکن است بصورت سراسری منحصربفرد باشد ، که خارج از محدوده آدرس تعریف شده در RFC 1918 اختصاص یافته ، یا باید رسماً به یک سازمان دیگر اختصاص داده شود .

سراسری داخلی ( Inside global ) :

آدرس IP یک میزبان داخلی همانگونه که در یک شبکه خارجی ظاهر می‌شود، “ آدرس ترجمه شده “. آدرسها می توانند از یک محدوده آدرس سراسری منحصر بفرد اختصاص داده شوند ، که بطور نمونه بوسیله ISP فراهم می‌شود ( اگر سازمان به اینترنت سراسری وصل شده باشد ) .

شکل 3 – ( واژه های فنی مترجم آدرسهای شبکه )

( NAT terminology ) « آدرس دهی خارجی » :

محلی خارجی :آدرس IP میزبان خارجی همانطور که در داخل شبکه ظاهر می‌شود . این آدرسها اگر مطلوب باشند می‌توانند از محدوده تعریف شده در RFC 1918 اختصاص داده شوند .

سراسری خارجی :آدرس IP پیکربندی شده نسبت داده شده به یک شبکه در شبکه خارجی

مدخل ترجمه ساده :

مدخل ترجمه‌ای که یک آدرس IP را به دیگری نگاشت می‌کند .

مدخل ترجمه گسترده :

مدخل ترجمه‌ای که یک جفت آدرس IP و پورت را به دیگری نگاشت می‌کند .

ویژگیهای اصلی :

مترحم آدرسهای ثابت ( ایستا ) –Telnet 207.33.94.1

یک کاربر می‌تواند یک نگاشت یک به یک بین آدرسهای محلی

وسراسری برقرار کند .

کاربران همچنین می‌توانند ترجمه‌ های آدرس استاتیک را به

سطوح پورت پیکربندی کنند . و سایر آدرسهای IP را برای

ترجمه‌های دیگر استفاده کنند .

مترحم آدرسهای پویا( محرک )

کاربر می‌تواند نگاشت پویا بین آدرسهای محلی و سراسری برقرار کند .

این کار بوسیله توصیف آدرسهای محلی که ترجمه شده اند ومجموعه آدرسهای

اختصاص داده شده محلی و سراسری انجام می‌گیرد .

میزبان همتا ( نظیر) :

توانایی پیکربندی مترجم آدرس شبکه برای اینکه قسمت میزبان همسان ازآدرس

IP را انتساب دهد و فقط قسمت پیشوند شبکه از آدرس IP را ترجمه کند .این

زمانی مفید است که شما از قسمت میزبان بعنوان مفهومی برای تشخیص دادن

استفاده می کنید و یا اینکه از تعدادی کاربر منحصربفرد استفاده می‌کنید

مترحم آدرس پورت ( ‍PAT) :

شکل 4 –

مفاهیم اسا سی ترجمه آدرس پورت :

شکل 5 –

پورت منبع منحصربفرد به ازای هر مدخل ترجمه :

چندین آدرس شبکه می‌تواند به یک یا تعداد کمی آدرس خارجی تبدیل شود که این کار با استفاده از یک ویژگی بنام ترجمه آدرس پورت ( PAT ) انجام می‌گیرد ، که ارجاع به سربار شده است و یک زیر مجموعه از عاملیت مترجم آدرس شبکه است .

مترجم آدرس پورت در آدرسهای IP سراسری داخلی از شماره پورت منبع منحصر بفردی استفاده می‌کند ، برای اینکه بین ترجمه ها تمایز قائل شود . چون هر شماره پورت بصورت 16 بیتی رمز گذاری می‌شود ، کل شماره می‌تواند از لحاظ فرض علمی به اندازه 65535 برای هر آدرس Ip باشد .مترجم آدرس پورت سعی می‌ کند پورتهای منبع اصلی باقی نگه دارد ، اگر این پورتهای منبع اختصاص داده شده باشند مترجم آدرس پورت سعی می‌کند اولین شماره پورت در دسترسی را که از گروههای پورت مناسبِ 0-5111, 512-1023 or 1024-65535 شروع می‌شود پیدا کند . اگر هنوز هیچ پورتی از گروههای مناسب در دسترس نباشد و بیش از یک آدرس IP پیکربندی شده باشد ، مترجم آدرس پورت به آدرس IP بعدی حرکت می‌کند وسعی می‌کند پورت منبع اصلی را دوباره اختصاص دهد . این روند تا زمانی ادامه پیدا می‌کند که آدرس IP و پورت در دسترسی تمام شود .

  • ترجمه دوار آدرس مقصد :...

تصاویر در فایلاصلی موجودند

شامل ورد 16 صفحه ای