Quagga and Ripv2 routing table redistribution Announcing the arrival of Valued Associate #679:...
What criticisms of Wittgenstein's philosophy of language have been offered?
systemd and copy (/bin/cp): no such file or directory
Noise in Eigenvalues plot
Why are current probes so expensive?
Where and when has Thucydides been studied?
Should man-made satellites feature an intelligent inverted "cow catcher"?
What was the last profitable war?
Why not use the yoke to control yaw, as well as pitch and roll?
Weaponising the Grasp-at-a-Distance spell
Does the transliteration of 'Dravidian' exist in Hindu scripture? Does 'Dravida' refer to a Geographical area or an ethnic group?
Problem with display of presentation
A question about the degree of an extension field
The test team as an enemy of development? And how can this be avoided?
Why did Bronn offer to be Tyrion Lannister's champion in trial by combat?
What is "Lambda" in Heston's original paper on stochastic volatility models?
Does the main washing effect of soap come from foam?
My mentor says to set image to Fine instead of RAW — how is this different from JPG?
3D Masyu - A Die
Can gravitational waves pass through a black hole?
Did pre-Columbian Americans know the spherical shape of the Earth?
How to make triangles with rounded sides and corners? (squircle with 3 sides)
Typical Calculus BC Separation of Variables Question
How much damage would a cupful of neutron star matter do to the Earth?
.bashrc alias for a command with fixed second parameter
Quagga and Ripv2 routing table redistribution
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Come Celebrate our 10 Year Anniversary!Quagga keeps announcing down routesQuagga bgpd and static routesRedistribute OSPFv3 static route to RIPngMultihomed Windows routing issueTraffic not routing as expectedStatic Routes and the Routing Tableipv6 static routing is not workingrouting setup on centos7Understanding routing with dual WANRouting troubles on secondary FIB/routing table on FreeBSD
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I am simulating a network topology using Virtual Box.
In one of my machines acting as router I set up zebra.conf and ripd.conf to be like this:
zebra.conf: (I don't know if it is a must to add the ips for each interface)
hostname zebra
password zebra
enable password zebra
interface eth-admin
interface eth-clients
interface eth-servidors
interface lo
ip forwarding
line vty
My ripd.conf:
router rip
redistribute connected
redistribute kernel
redistribute static
network 10.10.2.0/28
network 10.10.3.0/28
network 10.10.4.0/28
line vty
This is the routing table for this router machine:
Ip route for router machine
So I have this machine in the 10.10.4.0/28 network with IP: 10.10.4.11, but somehow, he doesn't get any route other than 10.10.4.0/28:
#ip route
10.10.4.0/28 dev eth-servidors proto kernel scope link src 10.10.4.11
So I ping that machine 10.10.4.11 from another machine from another network (for example IP: 10.10.3.1 it will send packets but it will not recieve them back.
The only solution is to add a static route to 10.10.3.0 network but isn't RIP used to avoid that?
I thought RIP would distribute the routing table of the router machine to all the machines connected to his network.
What am I missing?
Thanks
routing quagga rip
New contributor
add a comment |
I am simulating a network topology using Virtual Box.
In one of my machines acting as router I set up zebra.conf and ripd.conf to be like this:
zebra.conf: (I don't know if it is a must to add the ips for each interface)
hostname zebra
password zebra
enable password zebra
interface eth-admin
interface eth-clients
interface eth-servidors
interface lo
ip forwarding
line vty
My ripd.conf:
router rip
redistribute connected
redistribute kernel
redistribute static
network 10.10.2.0/28
network 10.10.3.0/28
network 10.10.4.0/28
line vty
This is the routing table for this router machine:
Ip route for router machine
So I have this machine in the 10.10.4.0/28 network with IP: 10.10.4.11, but somehow, he doesn't get any route other than 10.10.4.0/28:
#ip route
10.10.4.0/28 dev eth-servidors proto kernel scope link src 10.10.4.11
So I ping that machine 10.10.4.11 from another machine from another network (for example IP: 10.10.3.1 it will send packets but it will not recieve them back.
The only solution is to add a static route to 10.10.3.0 network but isn't RIP used to avoid that?
I thought RIP would distribute the routing table of the router machine to all the machines connected to his network.
What am I missing?
Thanks
routing quagga rip
New contributor
add a comment |
I am simulating a network topology using Virtual Box.
In one of my machines acting as router I set up zebra.conf and ripd.conf to be like this:
zebra.conf: (I don't know if it is a must to add the ips for each interface)
hostname zebra
password zebra
enable password zebra
interface eth-admin
interface eth-clients
interface eth-servidors
interface lo
ip forwarding
line vty
My ripd.conf:
router rip
redistribute connected
redistribute kernel
redistribute static
network 10.10.2.0/28
network 10.10.3.0/28
network 10.10.4.0/28
line vty
This is the routing table for this router machine:
Ip route for router machine
So I have this machine in the 10.10.4.0/28 network with IP: 10.10.4.11, but somehow, he doesn't get any route other than 10.10.4.0/28:
#ip route
10.10.4.0/28 dev eth-servidors proto kernel scope link src 10.10.4.11
So I ping that machine 10.10.4.11 from another machine from another network (for example IP: 10.10.3.1 it will send packets but it will not recieve them back.
The only solution is to add a static route to 10.10.3.0 network but isn't RIP used to avoid that?
I thought RIP would distribute the routing table of the router machine to all the machines connected to his network.
What am I missing?
Thanks
routing quagga rip
New contributor
I am simulating a network topology using Virtual Box.
In one of my machines acting as router I set up zebra.conf and ripd.conf to be like this:
zebra.conf: (I don't know if it is a must to add the ips for each interface)
hostname zebra
password zebra
enable password zebra
interface eth-admin
interface eth-clients
interface eth-servidors
interface lo
ip forwarding
line vty
My ripd.conf:
router rip
redistribute connected
redistribute kernel
redistribute static
network 10.10.2.0/28
network 10.10.3.0/28
network 10.10.4.0/28
line vty
This is the routing table for this router machine:
Ip route for router machine
So I have this machine in the 10.10.4.0/28 network with IP: 10.10.4.11, but somehow, he doesn't get any route other than 10.10.4.0/28:
#ip route
10.10.4.0/28 dev eth-servidors proto kernel scope link src 10.10.4.11
So I ping that machine 10.10.4.11 from another machine from another network (for example IP: 10.10.3.1 it will send packets but it will not recieve them back.
The only solution is to add a static route to 10.10.3.0 network but isn't RIP used to avoid that?
I thought RIP would distribute the routing table of the router machine to all the machines connected to his network.
What am I missing?
Thanks
routing quagga rip
routing quagga rip
New contributor
New contributor
New contributor
asked 8 mins ago
Burnsed dBurnsed d
1
1
New contributor
New contributor
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "2"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Burnsed d is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f964003%2fquagga-and-ripv2-routing-table-redistribution%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Burnsed d is a new contributor. Be nice, and check out our Code of Conduct.
Burnsed d is a new contributor. Be nice, and check out our Code of Conduct.
Burnsed d is a new contributor. Be nice, and check out our Code of Conduct.
Burnsed d is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f964003%2fquagga-and-ripv2-routing-table-redistribution%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown