Pages

network cisco ccna gns3 certification arteq

network cisco ccna gns3 certification arteq
a network runs through it

Search insearchofthecert

Showing posts with label IP. Show all posts
Showing posts with label IP. Show all posts

Wednesday, April 18, 2012

ip filtering l4...

we know that extended acl's can filter on l4 information such as protocols...we know that l3 devices excel in the ip arena... so how does a l3 device interpret l4 (transport) information...

the l3 device uses the protocol field in the datagram to determine the 8 bit number to protocol association that was established by iana in rfc 1700, here: http://www.rfc-editor.org/rfc/std/std2.txt

the protocol field essentially describes the data content of the packet...



Sunday, December 4, 2011

ARP, ARP, baby...

ARP- address resolution protocol

according to wikipedia : http://en.wikipedia.org/wiki/Address_Resolution_Protocol

Address Resolution Protocol (ARP) is a telecommunications protocol used for resolution of network layer addresses into link layer addresses, a critical function in multiple-access networks. ARP was defined by RFC 826

and there you have it...

a host wants to send an unknown host a mess,
DNS supplies the host  unkown's IP address
layer 2 has no clue
it ARP's for the cue
so IP is assigned a hardware address

sorry...


Wednesday, November 2, 2011

quiz...

1) what is the root bridge default priority?

2) what is the DOD equivalent of the OSI transport layer?

3) what is 90.37.200.31 in binary?

4)  /17.  how many subnets and hosts?

5)  what is the hop count for OSPF?

6) what kind of traffic does IGMP service?

7) IP is connection oriented? true or false

8) what is 2 to the 15th?

9) what does CHAP stand for?

10) how do you turn off CDP on an interface?

bonus:  what is the theme of this quiz?

answers after the trip

Tuesday, November 1, 2011

a poor man's routing...



routing rudiments... 




given: hosts are directly connected, host_A pings host_B

with a nod to lammle, odom, et al



1) host_A creates an echo request for host_B (ICMP)

2) ICMP hands the request to IP, which makes a packet that contains the IP source address, the IP destination address and a protocol field

3) IP determines whether the destination is a local or remote network

4) in this case it is remote, so the packet needs to go to the remote network determined by host_A’s OS (default gateway 172.16.10.1)

5) the MAC address of 172.16.10.1 (E0) is known by host_A. this supposes the arp cache has resolved E0’s IP address to a hardware address. (the output of arp -a will display E0’s MAC address) the packet will be framed by the datalink layer and shipped to the MAC address of E0. hosts only communicate with MAC addresses on the local network

6) if not already resolved, the host sends an arp broadcast to the local network. Upon receipt of the resolution, the host cache’s the MAC address of E0 and encapsulates the packet in a frame with control information.

In both the above cases (hardware address known, hardware address resolved) the framed destination MAC address (E0) and source MAC address (host_A), an ether-type field (network layer IP), the packet, and FCS (frame check sequence which holds the result of a cyclic redundancy check CRC) are shipped to the MAC address of the default gateway, not the MAC address of the remote host

7) the frame thusly prepared, is ready to traverse the physical layer bit by bit

8) at the router, the packet is taken from the frame and off loaded to IP. The remainder of the frame is discarded.

a good place to jump