BGP announcements? [closed] - networking

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
Can anyone explain how announcing in BGP works? I understand BGP finds the shortest/lowest-cost path to a destination network, but I also read somewhere that it announces these paths. Is that true, and how exactly does it announce a route?

BGP is Exterior Gateway Protocol and it is used in the network Borders between Autonomous systems , announcing network work like this example :
for example we have 3 Autonomous systems A,B
A have those tow networks 1.1.1.0/24 and 2.2.2.0/24
B have those tow network 3.3.3.0/24 and 4.4.4.0/24
so Edge router in A directly connected to Edge router in B and running BGP , every router announce (or advertise) which internal networks it have ( or want to publish) so now A routers know that there is 3.3.3.0/24 and 4.4.4.0/24 networks and they are reachable via Edge router of B and same with B networks

Related

connecting two routers via serial cards [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
on my current router cisco 2811 i have two subnets /30(fe0) and /27(fe1) ...i want to add /25 but i am told i need an external card: Cisco 2-Port Fast Ethernet Layer 3 HWIC. since thats very expensive i have another cisco 2811 i can use. i am thinking about buying 2 serial cards which i could connect these two routers and place my /25 subnet on one of the free FE ports of the second router. these subnets are public IPs so i cant just move things around that easy since i have dedicated IPs to clients.
questions
1)will this work ? connecting two routers of the same kind
2)are there any performance issues?
running a small hosting company
thank you
I think that the best option is buy a cheap switch that support trunks like Cisco sf300 or C2950, make 3 vlans and create 3 subinterface in C28XX one for each subnet.

How does a packet get to the destination on the same network [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
This shows a network of 3 workstations and a router. below is the routing table of PC 1
If PC1 sends a packet to PC 2. How would it get to the destination?
As I have understood PC1 would refer its routing table, and broadcast the packet.For that which entry in the routing table would it make use of?
It's the third entry in your routing table: 172.16.18.0/24 is routed through 172.16.18.1 which is local network interface. Thus the OS knows that packets to this network should be delivered through this interface.

Two internet connection and one Local Area Network [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
What solution do you think of following situation :-
Switch X, is connected to router A and router B. Where both routers are for internet connection.
Router A has DHCP running and have ip on lan 192.168.1.1/24.
Router B has DHCP running and have ip on lan 192.168.100.1/24.
Though these two are on same physical network, but logically are on different LANs.
Now let's call these LAN-1 and LAN-2 respectively.
How can one computer on LAN-1 connect to other computer on LAN-2.
You have to provide routing from LAN-1 to LAN-2 for interconnecting 2 networks.

can IPv6 eliminate mac address [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
MAC address are used for uniquely identifying my computer.
IP address are used for routing the packets to the network, as it has got a hierarchial structure, but it doesn't uniquely identifies a computer. So, after IPv6, each computer will have a unique IP address, so will there be any need of MAC address then?
Please do correct me, if I had understood something wrong.
No. MAC addresses operate at layer 2 ("data link layer"). The Internet Protocol (both IPv4 and IPv6) operates at layer 3 ("network layer").
These two layers are complimentary, and do not "replace" each other. For more information, read up on the TCP/IP suite.
IPv6 stateless address autoconfiguration (SLAAC) uses the MAC address to generate the address, but that does not mean they "replace" each other. It's simply a characteristic of the layer 2 interface being inherited by the layer 3 addressing. Other than that, completely complimentary.

Do we need an interface router per each subnetwork? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I have the knowledge to do subnetingmath, but I confused what device that is used to separate each subnet from other ones? who will route packets to the right subnetwork destination? If it is the router, do we need an interface per each subnetwork?
It is the router the one in charge of routing the packets to the right subnetworks. You need to assign each subnetwork to a different interface, but this does not necessarily mean physical interfaces. You can use virtual interfaces as well.
Here's a Cisco link about them:
http://www.cisco.com/en/US/docs/ios/12_4/interface/configuration/guide/inb_virt.html
If you have multiple internal subnets, the industry standard is to create sub-interfaces and encapsulate as a DOT1Q trunk between the router and the switch.
Example R1
Interfaces:
S0/0/0 - used for WAN
Fa0/1 -physical internal interface
Fa0/1.100 Data VLAN (sub-interface)
Fa0/1.200 Voice VLAN (sub-interface)
Switch. Will have VLANs 100 and 200 on it and the trunk port will be configured as encapsulation DOT1Q. With these commands.
"switchport mode trunk"
"switchport trunk encapsulation dot1q"
I have literally done this thousands of times. Don't waste money on separate router interfaces for internal subnets.
Hope this helps.

Resources