نمایش نتایج: از شماره 1 تا 4 , از مجموع 4

موضوع: آموزش Route در ویندوز به صورت دستی

  1. #1
    کاربر اخراج شده
    تاریخ عضویت
    May 2010
    محل سکونت
    هسته گنو
    نوشته ها
    6
    تشکر تشکر کرده 
    1
    تشکر تشکر شده 
    5
    تشکر شده در
    5 پست

    57 آموزش Route در ویندوز به صورت دستی

    این آموزش مربط به
    Route


    که خیلی از مهندس های شبکه و غیره سرشون از کلاه میرزا عباس کندری هم در نمیاد

    ازشون بپرسی بلد نیستن من آموزشش رو میزارم در ویندوز (فرقی) ندارد در چه نسخه ای (تخیلی) ماکروسافتی باشد
    :D
    فقط TCP/IP داشته باشد
    ==================
    شروع میکنم و اگر کسی نمیدونه کاربردش چیه بهتر چیزی نگه / اونای که این عمل رو به درستی انجام دادن و جواب گرفتن حرف بزنن لطفا/
    StaRt 0 /
    Syntax

    route [-f] [-p] [Command [Destination] [mask Netmask] [Gateway] [metric Metric]] [if Interface]]
    ================================================== ===========
    Parameters

    -f: Clears the routing table of all entries that are not host routes (routes with a netmask of 255.255.255.255), the loopback network route (routes with a destination of 127.0.0.0 and a netmask of 255.0.0.0), or a multicast route (routes with a destination of 224.0.0.0 and a netmask of 240.0.0.0). If this is used in conjunction with one of the commands (such as add, change, or delete), the table is cleared prior to running the command.
    -p: When used with the add command, the specified route is added to the registry and is used to initialize the IP routing table whenever the TCP/IP protocol is started. By default, added routes are not preserved when the TCP/IP protocol is started. When used with the print command, the list of persistent routes is displayed. This parameter is ignored for all other commands. Persistent routes are stored in the registry location HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Servic es\Tcpip\Parameters\PersistentRoutes.
    Command: Specifies the command you want to run. The following table lists valid commands.
    CommandPurposeadd
    Adds a route.
    change
    Modifies an existing route.
    delete
    Deletes a route or routes.
    print
    Prints a route or routes.
    Destination: Specifies the network destination of the route. The destination can be an IP network address (where the host bits of the network address are set to 0), an IP address for a host route, or 0.0.0.0 for the default route.
    maskNetmask: Specifies the netmask (also known as a subnet mask) associated with the network destination. The subnet mask can be the appropriate subnet mask for an IP network address, 255.255.255.255 for a host route, or 0.0.0.0 for the default route. If omitted, the subnet mask 255.255.255.255 is used. Because of the relationship between the destination and the subnet mask in defining routes, the destination cannot be more specific than its corresponding subnet mask. In other words, there cannot be a bit set to 1 in the destination if the corresponding bit in the subnet mask is a 0.
    Gateway: Specifies the forwarding or next hop IP address over which the set of addresses defined by the network destination and subnet mask are reachable. For locally attached subnet routes, the gateway address is the IP address assigned to the interface that is attached to the subnet. For remote routes, available across one or more routers, the gateway address is a directly reachable IP address that is assigned to a neighboring router.
    metricMetric: Specifies an integer cost metric (ranging from 1 to 9999) for the route, which is used when choosing among multiple routes in the routing table that most closely match the destination address of a packet being forwarded. The route with the lowest metric is chosen. The metric can reflect the number of hops, the speed of the path, path reliability, path throughput, or administrative properties.
    ifInterface: Specifies the interface index for the interface over which the destination is reachable. For a list of interfaces and their corresponding interface indexes, use the display of the route print command. You can use either decimal or hexadecimal values for the interface index. For hexadecimal values, precede the hexadecimal number with 0x. When the if parameter is omitted, the interface is determined from the gateway address.
    /?: Displays help at the command prompt.

    ================================================== ============
    Examples

    To display the entire contents of the IP routing table, type:
    route print
    To display the routes in the IP routing table that begin with 10., type:
    route print 10.*
    To add a default route with the default gateway address of 192.168.12.1, type:
    route add 0.0.0.0 mask 0.0.0.0 192.168.12.1
    To add a route to the destination 10.41.0.0 with the subnet mask of 255.255.0.0 and the next hop address of 10.27.0.1, type:
    route add 10.41.0.0 mask 255.255.0.0 10.27.0.1
    To add a persistent route to the destination 10.41.0.0 with the subnet mask of 255.255.0.0 and the next hop address of 10.27.0.1, type:
    route -p add 10.41.0.0 mask 255.255.0.0 10.27.0.1
    To add a route to the destination 10.41.0.0 with the subnet mask of 255.255.0.0, the next hop address of 10.27.0.1, and the cost metric of 7, type:
    route add 10.41.0.0 mask 255.255.0.0 10.27.0.1 metric 7
    To add a route to the destination 10.41.0.0 with the subnet mask of 255.255.0.0, the next hop address of 10.27.0.1, and using the interface index 0x3, type:
    route add 10.41.0.0 mask 255.255.0.0 10.27.0.1 if 0x3
    To delete the route to the destination 10.41.0.0 with the subnet mask of 255.255.0.0, type:
    route delete 10.41.0.0 mask 255.255.0.0
    To delete all routes in the IP routing table that begin with 10., type:
    route delete 10.*
    To change the next hop address of the route with the destination of 10.41.0.0 and the subnet mask of 255.255.0.0 from 10.27.0.1 to 10.27.0.25, type:
    route change 10.41.0.0 mask 255.255.0.0 10.27.0.25












    موفق باشید





  2. تعداد تشکر ها از ibh به دلیل پست مفید


  3. # ADS




     

  4. #2
    عضو جدید
    تاریخ عضویت
    Dec 2010
    نوشته ها
    1
    تشکر تشکر کرده 
    0
    تشکر تشکر شده 
    1
    تشکر شده در
    تشکر شده 1 بار در 1 پست

    پیش فرض پاسخ : آموزش Route در ویندوز به صورت دستی

    سلام مهندس خیلی هنر به خرج دادی ها !!!
    مستقیم راهنمای دستور رو کپی کردی اینجا؟؟
    حداقل به فارسی اینا رو توضیح می دادی/

  5. تعداد تشکر ها از meisam.ri به دلیل پست مفید


  6. #3
    عضو دائم
    تاریخ عضویت
    Oct 2008
    محل سکونت
    Neverland
    نوشته ها
    3,023
    تشکر تشکر کرده 
    1,897
    تشکر تشکر شده 
    8,821
    تشکر شده در
    4,186 پست

    پیش فرض پاسخ : آموزش Route در ویندوز به صورت دستی


  7. تعداد تشکر ها از 1eng.ir به دلیل پست مفید


  8. #4
    عضو انجمن reza115 آواتار ها
    تاریخ عضویت
    Aug 2010
    نوشته ها
    428
    تشکر تشکر کرده 
    201
    تشکر تشکر شده 
    1,175
    تشکر شده در
    833 پست

    پیش فرض پاسخ : آموزش Route در ویندوز به صورت دستی

    سلام

    تو ویندوز xp هم میشه رووت کرد یا باید حتما سرور باشه ؟ !

  9. تعداد تشکر ها از reza115 به دلیل پست مفید


اطلاعات موضوع

کاربرانی که در حال مشاهده این موضوع هستند

در حال حاضر 1 کاربر در حال مشاهده این موضوع است. (0 کاربران و 1 مهمان ها)

موضوعات مشابه

  1. آموزش نحوه نصب ویندوز ۱۰ بصورت اورجینال
    توسط ali269 در انجمن مباحث دیگر
    پاسخ ها: 8
    آخرين نوشته: February 11th, 2015, 17:17
  2. پاسخ ها: 5
    آخرين نوشته: November 4th, 2013, 01:04
  3. پاسخ ها: 4
    آخرين نوشته: February 12th, 2013, 00:13
  4. آموزش اضافه کردن دامین به صورت دستی در iis
    توسط mosili در انجمن مباحث و منابع آموزشی
    پاسخ ها: 1
    آخرين نوشته: August 15th, 2012, 19:19
  5. پاسخ ها: 0
    آخرين نوشته: April 6th, 2012, 05:36

مجوز های ارسال و ویرایش

  • شما نمیتوانید موضوع جدیدی ارسال کنید
  • شما امکان ارسال پاسخ را ندارید
  • شما نمیتوانید فایل پیوست کنید.
  • شما نمیتوانید پست های خود را ویرایش کنید
  •