Results 1 to 2 of 2

Thread: ignore this thread please

Hybrid View

  1. #1
    Join Date
    Sep 2008
    Posts
    108

    ignore this thread please

    i need somewhere to temporarily store some small jot notes on router config. please ignore them i need them for tomorrow and i lost my USB (and its a miracle i get to post things on forums). and more importantly my hard drive is subject to blow away.

    config T

    hostname wireless/newcompany1

    no IP domain-lookup

    enable secret cisco

    int lo 0
    description local interface for testing
    ip address 111.222.333.444 255.255.255.255
    exit

    int fa 0
    descrption gateway to wired LAN
    ip address 111.222.333.444 255.255.255.224
    no shutdown

    int fa 1
    descrption gateway to wired LAN
    ip address 111.222.333.444 255.255.255.224
    no shutdown

    int s0
    description link to WAN isp
    ip address 111.222.333.444 255.255.255.252
    clock rate 128000
    no shutdown

    int s1
    description link to newcompany1
    ip address 111.222.333.444 255.255.255.252
    clock rate 128000
    encapsulation ppp
    no shutdown

    router rip
    version 2
    network 111.222.333.444
    network 111.222.333.444
    network 111.222.333.444

    ip dhcp pool wired LAN
    network 111.222.333.444 255.255.255.224
    default router 111.222.333.444
    dns-server 111.222.333.444
    lease 1 12 33
    exit

    ip dhcp-excluded-address 111.222.333.444
    ip dhcp-excluded-address 111.222.333.444
    ip dhcp-excluded-address 111.222.333.444

    debug ip dhcp server events
    no debug all

    line con 0
    password class
    login
    logging synchronous

    line vty 0 4
    password class
    login
    logging synchronous

    line aux 0
    password class
    login
    logging synchronous

    exit
    exit

    and this is just sample info not real, note NOT REAL, your ignorance is appreciated.

  2. #2
    Join Date
    Sep 2008
    Posts
    108
    steps for success:

    1) complete the addressing as required.
    2) label the drawing
    3) connect the equipment
    4) configure the global settings
    5) configure interfaces + check for activity
    6) configure routing table (check routing table + telnet)
    7) configure DHCP (check with a WorkStation)
    8) Configure NAT (check, ping, telnet)


    nat creation:

    enable

    config t

    hotname fakename

    no ip domain-lookup

    enable secrect cisco

    lin con 0
    login
    logging synchronous

    line vty 0 4
    password class
    login
    logging synchronous

    line aux 0
    password class...
    login

    interface fa 0/0
    description gateway for LAN
    ip address 10.100.100.1 255.255.255.0
    no shutdown
    ip nat inside

    interface S0/1
    description WAN to ISP
    IP address 50.50.50.50 205.205.205.205
    no shutdown
    ip nat outside
    encapsulation ppp

    interface lo 0
    description loopback for testing
    ip address 212.100.100.1 255.255.255.050

    router rip
    version 2
    network 10.100.100.0
    network 50.50.50.48
    network 212.100.100.1
    exit

    ip route 0.0.0.0 0.0.0.0 50/1 or next hop 50.50.50.49

    access-list 1 permit 10.100.100.0 0.0.0.255

    ip nat inside-source list 1 int s0/1 overload

    show ip nat translation
    show ip nat statistics

    debug ip nat
    debug ip nat detailed

    clear ip nat*
    clear ip nat inside a.b.c.d. outside e.f.g.h.

    again all fake please ignore those ip's are all B.S.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •