Re: [pox-dev] host unreachable

2013-11-13 Thread durga
Also, to add to what Sulabh advised,

It would be nice if you can provide us with more info on what topology you
have implemented.
Apart from that, if you are using mininet vm , wireshark is inbuilt and you
can fire it up, using ' sudo wireshark & 'that should help you see the
packets and understand where the issue might be..



Cheers!
Durga



On Thu, Nov 14, 2013 at 6:07 AM, Sulabh Bista  wrote:

> You can start pox with layer 2 learning algorithm. Try this:
> ./pox.py forwarding.l2_learning
>
>
>
>
> On Wed, Nov 13, 2013 at 1:42 PM, farshad tajedin <
> farshad.taje...@gmail.com> wrote:
>
>> hi
>> when i run mininet by like "sudo mn --controller remote" and run
>> ./pox.py and ping h2 from h1 i get destination host unreachable, while
>> before it dose ping. can any body help me?
>>
>> --
>> Best Regards
>>
>> Farshad Tajedin
>>
>
>


Re: [pox-dev] host unreachable

2013-11-13 Thread Sulabh Bista
You can start pox with layer 2 learning algorithm. Try this:
./pox.py forwarding.l2_learning




On Wed, Nov 13, 2013 at 1:42 PM, farshad tajedin
wrote:

> hi
> when i run mininet by like "sudo mn --controller remote" and run
> ./pox.py and ping h2 from h1 i get destination host unreachable, while
> before it dose ping. can any body help me?
>
> --
> Best Regards
>
> Farshad Tajedin
>


Re: [pox-dev] Host Unreachable in a loop topo

2013-07-21 Thread Murphy McCauley
On Jul 21, 2013, at 6:51 PM, Sadia Bashir wrote:

> Hi everyone, I have four switches connected in a loop, each switch has two 
> hosts connected with it. My requirement is to maintain flow in one direction 
> only i.e., echo request and echo reply after issuing a ping command should 
> take different routes. If I want to ping h3(connected to s2) from 
> h1(connected to s1), destination(h3 @ s2) is unreachable, In this case 
> controller should tell s1 to forward packet to port connected to s2. My 
> question is how would controller know which s1 port is connected to s2 and if 
> I broadcast the packet it remains in a loop and never reaches at its 
> destination. Thank you!


Are you trying to come up with some sort of general solution, or just making 
this happen on this particular topology?

If it's the latter, you could probably do it with a handful of table entries 
installed "by hand".

If it's the former, it's potentially considerably more complicated, depending 
on exactly how general you want it to be.

-- Murphy