Wednesday, May 17, 2017

Lab.7 EIGRP Troubleshooting 2

i'm back again to give you the second troubleshooting EIGRP lab

First of all, let's get a quick map of the surroundings.
R4>sh ip int brief
Interface                  IP-Address      OK? Method Status                Protocol
FastEthernet0/0            unassigned      YES NVRAM  administratively down down   
Serial0/0                  unassigned      YES NVRAM  up                    up     
Serial0/0.1                172.16.1.254    YES NVRAM  up                    up     
Serial0/0.3                172.16.2.1      YES NVRAM  up                    up     
FastEthernet0/1            unassigned      YES NVRAM  administratively down down   

Note that we have 2 sub-interfaces off Serial0/0 - yet we have three branch routers. This tells me that at least one of those interfaces is multipoint and one is point-to-point. To investigate further, we need to take a look at the sub-interfaces.
R4>sh fr pvc

PVC Statistics for interface Serial0/0 (Frame Relay DTE)

              Active     Inactive      Deleted       Static
  Local          3            0            0            0
  Switched       0            0            0            0
  Unused         0            0            0            0

DLCI = 101, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial0/0.1

  input pkts 12            output pkts 14           in bytes 666      
  out bytes 907            dropped pkts 0           in pkts dropped 0        
  out pkts dropped 0                out bytes dropped 0        
  in FECN pkts 0           in BECN pkts 0           out FECN pkts 0        
  out BECN pkts 0          in DE pkts 0             out DE pkts 0        
  out bcast pkts 9         out bcast bytes 546      
  5 minute input rate 0 bits/sec, 0 packets/sec
  5 minute output rate 0 bits/sec, 0 packets/sec
  pvc create time 00:07:00, last time pvc status changed 00:05:20

DLCI = 102, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial0/0.1

  input pkts 14            output pkts 16           in bytes 1014     
  out bytes 1169           dropped pkts 0           in pkts dropped 0        
  out pkts dropped 0                out bytes dropped 0        
  in FECN pkts 0           in BECN pkts 0           out FECN pkts 0        
  out BECN pkts 0          in DE pkts 0             out DE pkts 0        
  out bcast pkts 7         out bcast bytes 388      
  5 minute input rate 0 bits/sec, 0 packets/sec
  5 minute output rate 0 bits/sec, 0 packets/sec
  pvc create time 00:07:05, last time pvc status changed 00:05:25

DLCI = 103, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial0/0.3

  input pkts 12            output pkts 93           in bytes 666      
  out bytes 8341           dropped pkts 0           in pkts dropped 0        
  out pkts dropped 0                out bytes dropped 0         
  in FECN pkts 0           in BECN pkts 0           out FECN pkts 0        
  out BECN pkts 0          in DE pkts 0             out DE pkts 0        
  out bcast pkts 89        out bcast bytes 8081     
  5 minute input rate 0 bits/sec, 0 packets/sec
  5 minute output rate 0 bits/sec, 0 packets/sec
  pvc create time 00:07:07, last time pvc status changed 00:05:27

Note that Serial0/0.1 has two DLCI's and Serial0/0.3 has one - a clear indication that Serial0/0.1 is the multi-point interface and Serial0/0.3 is the point-to-point interface. We can also log in to R1, R2, and R3 and determine that R1 and R2 are on the same network as S0/0.1 and R3 has the point-to-point link to S0/0.3 on R4. While we are at it, we should also note IP addresses of all the interfaces for later reference
Host
Interface
IP
R4
S0/0.1
172.16.1.254/24
R4
S0/0.3
172.16.2.1/30
R1
S0/0
172.16.1.1/24
R1
Fa0/0
192.168.1.1/24
R2
S0/0
172.16.1.2/24
R2
Fa0/0
192.168.2.1/24
R3
S0/0
172.16.2.2/30
R3
Fa0/0
182.168.3.1/24

Now that we have a clearer network map, we can take a look at the EIGRP configuration. First of all, let's take a look at R4, since it is likely to know about each neighbor.
R4>sh ip eigrp neighbors
IP-EIGRP neighbors for process 1
H   Address                 Interface       Hold Uptime   SRTT   RTO  Q  Seq
                                            (sec)         (ms)       Cnt Num
2   172.16.1.2              Se0/0.1          149 00:07:53 1255  5000  0  2
1   172.16.1.1              Se0/0.1          144 00:09:51   26   200  0  2
0   172.16.2.2              Se0/0.3          131 00:09:56  262  1572  0  4

This is as it should be. Now, let's take a look at the topology to ensure that R4 knows about all the networks.
R4>sh ip eigrp topology
IP-EIGRP Topology Table for AS(1)/ID(172.16.2.1)

Codes: P - Passive, A - Active, U - Update, Q - Query, R - Reply,
       r - reply Status, s - sia Status

P 192.168.1.0/24, 1 successors, FD is 2172416
        via 172.16.1.1 (2172416/28160), Serial0/0.1
P 192.168.2.0/24, 1 successors, FD is 2172416
        via 172.16.1.2 (2172416/28160), Serial0/0.1
P 192.168.3.0/24, 1 successors, FD is 2172416
        via 172.16.2.2 (2172416/28160), Serial0/0.3
P 172.16.1.0/24, 1 successors, FD is 2169856
        via Connected, Serial0/0.1
P 172.16.2.0/30, 1 successors, FD is 2169856
        via Connected, Serial0/0.3

Sure enough, it's all there. A final check would be the routing table.
R4>sh ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

     172.16.0.0/16 is variably subnetted, 2 subnets, 2 masks
C       172.16.1.0/24 is directly connected, Serial0/0.1
C       172.16.2.0/30 is directly connected, Serial0/0.3
D    192.168.1.0/24 [90/2172416] via 172.16.1.1, 00:11:09, Serial0/0.1
D    192.168.2.0/24 [90/2172416] via 172.16.1.2, 00:09:09, Serial0/0.1
D    192.168.3.0/24 [90/2172416] via 172.16.2.2, 00:11:14, Serial0/0.3

Again - everything as it should be. Basically, we can say that if a packet arrives at R4, then R4 knows how to route it. Let's now move on to one of the routers that is having an issue - R1, and take a look at the EIGRP tables (neighbor, topology and routing).
R1>sh ip eigrp neighbors
IP-EIGRP neighbors for process 1
H   Address                 Interface       Hold Uptime   SRTT   RTO  Q  Seq
                                            (sec)         (ms)       Cnt Num
0   172.16.1.254            Se0/0            149 00:12:35   42   252  0  11
R1>sh ip eigrp topology
IP-EIGRP Topology Table for AS(1)/ID(192.168.1.1)

Codes: P - Passive, A - Active, U - Update, Q - Query, R - Reply,
       r - reply Status, s - sia Status

P 192.168.1.0/24, 1 successors, FD is 28160
        via Connected, FastEthernet0/0
P 192.168.3.0/24, 1 successors, FD is 2684416
        via 172.16.1.254 (2684416/2172416), Serial0/0
P 172.16.1.0/24, 1 successors, FD is 2169856
        via Connected, Serial0/0
P 172.16.2.0/30, 1 successors, FD is 2681856
        via 172.16.1.254 (2681856/2169856), Serial0/0
R1>sh ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

     172.16.0.0/16 is variably subnetted, 2 subnets, 2 masks
C       172.16.1.0/24 is directly connected, Serial0/0
D       172.16.2.0/30 [90/2681856] via 172.16.1.254, 00:12:45, Serial0/0
C    192.168.1.0/24 is directly connected, FastEthernet0/0
D    192.168.3.0/24 [90/2684416] via 172.16.1.254, 00:12:45, Serial0/0

Now, we are expecting to see only one neighbor - R4, so the neighbor table is correct. However, the topology table tells us that we are not receiving routes for 192.168.2.0/24 - the R2 router. This would normally be sent to us via R4. Obviously, without that route being advertised to us, we are not going to put it in our routing table. Since R2 has the same problem, I'd say that R4 is the likely culprit in terms of problem location.

One thing we can do on R4 to try to diagnose the problem is to take a look at the EIGRP relationships using the debug ip eigrp command. To do this, we establish the debug command on R4, then clear the Neighborship, and watch it get re-established. We will see debug messages that show what routes get advertised and where they get advertised. Here is an example message.
*Mar  1 00:38:23.335: IP-EIGRP(Default-IP-Routing-Table:1): 192.168.1.0/24 - do advertise out Serial0/0.3
*Mar  1 00:38:23.335: IP-EIGRP(Default-IP-Routing-Table:1): Int 192.168.1.0/24 metric 2172416 - 1657856 514560

Don't forget to do a no debug all after you have the information you are after. In this case, I note (through a page worth of debug messages) that 192.168.3.0/24 is being advertised out of Serial0/0.1, but 192.168.1.0/24 and 192.168.2.0/24 are not. Let's review the reasons why a network would not be advertised:
1.    Route Filtering
2.    Auto or Manual Summarization
3.    Split-Horizon

Taking a look first at route filtering, we can easily check this by checking the output of show ip protocols.
R4#sh ip protocols | section filter list
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set

This tells us we are not filtering routes. We can also use show ip protocols to determine automatic and manual summarization. For instance, if we had installed a summary route, this is what it would look like:
R4#sh ip protocols | section [Ss]ummarization
  Automatic network summarization is not in effect
  Address Summarization:
    192.168.0.0/16 for FastEthernet0/0

As it is, our output is more like this:
R4#sh ip protocols | section [Ss]ummarization
  Automatic network summarization is not in effect

That leaves us with split-horizon. Unfortunately, this is the last thing in the list, so it's more a solution by deduction. However, we can easily see if split-horizon is enabled.
R4#sh ip int s0/0.1 | section Split horizon
  Split horizon is enabled

That's the definitive proof that is required. We've also, by reason of elimination through the examination, removed other potential problems that would stop R1 from communicating with R2 (except for perhaps ACLs, which would be deliberately installed, not accidentally left off).


Corrective Action

The corrective action is amazingly simple:
R4#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
R4(config)#int s0/0.1
R4(config-subif)#no ip split-horizon eigrp 1
R4(config-subif)#end
R4#wr mem

This will drop and re-establish the EIGRP neighborship on that link, adjusting the routing tables throughout the organization. As such, it should be done during a "maintenance window".

Lab.6 Troubleshoot EIGRP 1

First Time Troubleshoting EIGRP Lab it's Going To Be Fun In This Troubleshooting
So This is the Topology : 
The Purpose is simple just to connect all router so all router can get information from all router 😄☺😃 also in R1 there are 2 loopback interface we must make 2 of them can parsing data with all router too

I have configured this topology like this :

R1 :

interface Loopback0
 ip address 1.1.1.1 255.255.255.255
!
interface Loopback2
 ip address 11.11.11.3 255.255.255.254
!
interface FastEthernet0/0
 ip address 12.12.12.1 255.255.255.0
 duplex auto
 speed auto
!
router eigrp 10
 network 1.0.0.0
 network 12.0.0.0
 no auto-summary
R2 :

interface FastEthernet0/0
 ip address 12.12.12.2 255.255.255.252
 duplex auto
 speed auto
!
interface FastEthernet0/1
 ip address 23.23.23.10 255.255.255.252
 duplex auto
 speed auto
!
router eigrp 10
 network 12.0.0.0
 network 23.0.0.0
 no auto-summary
R3 :

interface FastEthernet0/0
 ip address 23.23.23.9 255.255.255.252
 duplex auto
 speed auto
!
interface FastEthernet0/1
 ip address 34.34.34.30 255.255.255.192
 duplex auto
 speed auto
!
router eigrp 10
 network 23.0.0.0
 network 34.0.0.0
 no auto-summary
R4 :

interface FastEthernet0/0
 ip address 34.34.34.29 255.255.255.192
 duplex auto
 speed auto
!
router eigrp 10
 network 34.0.0.0
 no auto-summary
By the configuration that have made before there is a big mistake of making the EIGRP topology and that mistake is just wrong putting the network that we want to advertise it so if we want to make ALL router and loopback can communicate each other

we have to put the netmask of the network but in this EIGRP configuration we have to put the Wildcard

and what is Wildcard,A wildcard mask is a mask of bits that indicates which parts of an IP address are available for examination. In the Cisco IOS, they are used in several places, for example:

List of Wildcard Mask
SlashNetmaskWildcard Mask
/30255.255.255.2520.0.0.3
/29255.255.255.2480.0.0.7
/28255.255.255.2400.0.0.15
/27255.255.255.2240.0.0.31
/26255.255.255.1920.0.0.63
/25255.255.255.1280.0.0.127
/24255.255.255.00.0.0.255
/23255.255.254.00.0.1.255
/22255.255.252.00.0.3.255
/21255.255.248.00.0.7.255
/20255.255.240.00.0.15.255
/19255.255.224.00.0.31.255
/18255.255.192.00.0.63.255
/17255.255.128.00.0.127.255
/16255.255.0.00.0.255.255
/15255.254.0.00.1.255.255
/14255.252.0.00.3.255.255
/13255.248.0.00.7.255.255
/12255.240.0.00.15.255.255
/11255.224.0.00.31.255.255
/10255.192.0.00.63.255.255
/9255.128.0.00.127.255.255
/8255.0.0.00.255.255.255
/7254.0.0.01.255.255.255
/6252.0.0.03.255.255.255
/5248.0.0.07.255.255.255
/4240.0.0.015.255.255.255
/3224.0.0.031.255.255.255
/2192.0.0.063.255.255.255
/1128.0.0.0127.255.255.255
And here are the true configuration for this topology :
R1 :

interface Loopback0
 ip address 1.1.1.1 255.255.255.255
!
interface Loopback2
 ip address 11.11.11.3 255.255.255.254
!
interface FastEthernet0/0
 ip address 12.12.12.1 255.255.255.0
 duplex auto
 speed auto
!
router eigrp 10
 network 1.1.1.1 0.0.0.0
 network 11.11.11.2 0.0.0.1
 network 12.12.12.0 0.0.0.255
 no auto-summary
R2 :

interface FastEthernet0/0
 ip address 12.12.12.2 255.255.255.252
 duplex auto
 speed auto
!
interface FastEthernet0/1
 ip address 23.23.23.10 255.255.255.252
 duplex auto
 speed auto
!
router eigrp 10
 network 12.12.12.0 0.0.0.3
 network 23.23.23.8 0.0.0.3
 no auto-summary
R3 :

interface FastEthernet0/0
 ip address 23.23.23.9 255.255.255.252
 duplex auto
 speed auto
!
interface FastEthernet0/1
 ip address 34.34.34.30 255.255.255.192
 duplex auto
 speed auto
!
router eigrp 10
 network 23.23.23.8 0.0.0.3
 network 34.34.34.0 0.0.0.63
 no auto-summary
R4 :

interface FastEthernet0/0
 ip address 34.34.34.29 255.255.255.192
 duplex auto
 speed auto
!
router eigrp 10
 network 34.34.34.0 0.0.0.63
 no auto-summary
After so much changing configuration finally we have done configure the EIGRP Troubleshooting you can test it by yourself and i'm going to give you the Lab you can lab this topology this one i have configured so you may see the configuration or delete the configuration to try this troubleshooting again

Monday, April 17, 2017

Debian

Today we're talking about server in the internet what kind Operating system are to control the Server on the internet with many request from client,the answer is too much is it Linux or Windows linux have many Server OS like Debian and Ubuntu but windows have it too like Windows Server 2000

As grow so many server on the Internet the user of Debian,Ubuntu,or even Windows Server has growing too so i'm going to tell you what is Debian

Debian is a Unix-like computer operating system that is composed entirely of free software,most of which is under the GNU General Public License and packaged by a group of individuals participating in the Debian Project.

in 1993 by ian Murdock, debian 0.01 was released on september 15,1993 and the first stable release was made in 1996.The debian Stable release branch is one of the most popular for personal computer s and network server, and has been used as a base for many other distribution.

The project's work is carried out over the internet by a team of volunteers guided by the Debian Project Leader and three foundational documents: the Debian Social Contract,the Debian Constituion,and the Debian Free Software Guidelines.New distribution are updated continually. and the next candidate is released after a time-based freeze.

As one of the earliest Operating system based on the Linux kernek. it was decided that debian was to be developed openly and freely distributed in the spirit of the GNU Project. This decision drew the attention and support of the Free software Foundation which sposored the project for one year from November 1994 to november 1995. Upon the ending of the sponsorship, the Debian Project fromed the non-profit organisation Software in the Public Interest.

While Debian's main port,Debian GNU/Linux, ses the Linux kernel,other ports exist based on BSD kernels and the HURD microkernel. All use the GNU userland and the GNU C library

that all from me about debian, see you next time

HTML

i'm back again to give some nice post about HTML,what is in your mind when there is an HTML
many say it's like a future in Browser many say it just a plain text in browser
Actually HTML is just a standard markup language like its abbrevation Hypertext Markup Language(HTML) for creating web pages and web application. with CSS (Cascading Style Sheets) and JavaScript it will forms a triad of cornerstone technologies for the World Wide Web. 

Web browsers receive HTML document from a webserver or from local storage and render them into multimedia web pages. HTML describes the structure of a web page semantically and originally included cues for the apperance of the document.

HTML Element are the building block of HTML pages. with HTML construct,images,and other object,such as interactive forms,may be embedded into the rendered page. it provides a means to create structured documents by denoting structural semantics for text such as headings,paragprahs,lists,links,quotes,and other items.

HTML Elements are delineated by tags,written using angle brackets. Tags such as <img /> and <input /> introduce content into the page directly.other such as <p>...</p> surround and provide information about document text and may include other tags as sub-elements.browser do not display the HTML tags,but use them to interpre the content of the page.

HTML can embed programs written in a scripting language such as JavaScript whic affect the behavior and content of web pages. Inclusion of CSS defines the look and layout of content.The world wide web consortium (W3c), maintainer of both the HTML and the CSS standards,has encouraged the use of CSS over explicit presentational HTML since 1997.

now i'm going to show you all HTML tag :

TAGKETERANGAN
<!-- ... -->Used to give a comment or description. Sentences that are located on this tag will not be visible in a browser
<!DOCTYPE> Defines the document type information
<a>Defines an anchor, but more accurately defined as a link because this link is used for mutual link between the HTML document into another HTML document
<abbr>Used to describe an expression that is abbreviated and you can provide useful information to the searcher page source (the page source code) / screen readers, translation systems and search engines coming from the stands which have been described, but when the browser description will not appear and just as information only
<acronym>Defining acronyms / tag function is approximately equal to the <abbr>
<address>Defines contact information for the author / owner of the document
<applet>Used to incorporate the java files into HTML documents
<area />Defines a clickable area (link) on the map image
<b>Make text bold
<base />Defines the base URL / target for all relative URLs in a document
<basefont />Make the default text attributes, such as color, size, font for all the text in the document
<bdo>Used to override the text direction
<big>Increase text size by one point from the default
<blink>Creating a blinking text
<blockquote>Defines a long quotation. At the moment in a text browser will appear indented into
<body>Defining body / content of an HTML document, is used to determine how the content of a document is displayed in the web browser. The contents of the document can be text, images, animas, links and so on
<br />Giving a new line / line feed
<button>Defines a clickable button
<caption>Make a caption on the table
<center>For center alignment of the text or image
<cite>Defining quote
<code>Defines a piece of computer code
<col />Defines the attribute values of one or more columns in a table
<colgroup>Define groups of one or more columns in a table for performatan
<dd>Defines a description of an item in a definition list
<del>To give the center line of the text / cross out text
<dfn>Defines a definition term
<dir>Defines a directory list
<div>Defines a section in a document
<dl>Defines a definition list
<dt>Defines a term (an item) in a definition list
<em>Make italic text. The function of this tag is equal to the <i> but the <em> more recommended / emphasis on the use of italic text
<embed>Used to insert video files or music files
<fieldset>To group related elements in a form / making such a frame-box in the form
<font>Defines the font type, color and size for text
<form>Defines an HTML form to input form
<frame />Defines the frame in the frameset
<frameset>Defines a set of frames
<h1> to <h6>Used to indicate the start of a header / title of the HTML document.
<head>Used to provide information about the document
<hr />Make a horizontal line
<html>Defines the root of an HTML document
<i>Make italic text
<iframe>Defines an inline frame
<img />Function for displaying images on an HTML document
<input />Defines input field on the form
<ins>Make underlined text
<kbd>Defines a text in the input from the keyboard
<label>Defines a label for an element <input>
<legend>Defines a caption for the <fieldset>
<li>Used to display information in the form of a list item
<link />Defining the relationship between documents and external sources
<listing>Function is the same tag with the <pre> and recommended use <pre> because the <listing> unfit / protests
<map>Defining a client-side image maps
<marquee> Make text running vertically or horizontally
<menu>Defines a menu list
<meta />Defines metadata about an HTML document
<nobr>Prevent line breaks in the text or image
<noframes>If the user's browser does not support frames
<noscript>If the user's browser does not support client-side scripts
<object>putting embed an object
<ol>Defines the list numbering format
<optgroup>Featuring several options that have been grouped in the form of a drop-down list
<option>Featuring some of the options in the form of a drop-down list
<p>Creating a paragraph
<param />Defines a parameter for an object
<pre>Create a text with the same font size
<q>Defining a brief excerpt
<s>To give the center line of the text / cross out text, the function is the same tag with the <del> but the <s> is not recommended instead using <del>
<samp>Defines sample output from a computer program
<script>Defining a client-side script
<select>Creating a drop-down list
<small>Decrease text size from the default size
<span>Defines a section in a document
<strike>To give the center line of the text / cross out text, the function is the same tag with the <del>
<strong>Make text bold, function is the same tag with the <b>
<style>Defines style information for an HTML document
<sub>Giving effect to the text subscript
<sup>Giving effect to the text superscript
<table>Creating tables
<tbody>To categorize the contents of a body in a table
<td>Defines a cell in a table
<textarea>Defines a multiline input control
<tfoot>To group footer content in a table
<th>Defines a header cell in a table
<thead>To group the header content in a table
<title>Create a title for an HTML document
<tr>Make rows in a table
<tt>Defines teletype text
<u>Make underlined text, the function is the same tag with the <ins> but the <u> not recommended for the category of HTML text formatting but including the category HTML Style
<ul>Defining a list in bullet format
<var>Define a variable
<xmp>Defines preformatted text, function is the same tag with the <pre>
Make sure if you done editing a tag like <head>....you must put </head> at the end just put "/" behind end tag