Re: [pox-dev] Read payload when packet arrives at switch

2015-04-03 Thread chaitanya tanwar
x's FAQ "How do I get switches to send complete packet payloads to the > controller?" > > > [1] > https://www.opennetworking.org/technical-communities/areas/specification > > > -- > Att > Lucas Brasilino > MSc Student @ Federal University of Pernambuco (U

[pox-dev] Reading TLS header.

2015-04-03 Thread chaitanya tanwar
HI all, How can i read the TLS header of a packet? Is there any reference material available for the same? Thanks and Regards.

[pox-dev] Read payload when packet arrives at switch

2015-03-25 Thread Chaitanya Tanwar
Hi all, How can we read a packet's payload when it arrives at switch and do actions on the basis of payload content? What if the traffic is https/tls,can we still read the payload? Thanks and Regards Chaitanya Tanwar

[pox-dev] l3_learning problem

2015-03-04 Thread chaitanya tanwar
Hi all, I have a topology like the following : s1 ---s2 s3 ||| h1h2 h3 and a controller connected to all switches. Running l3_learning module. I have written a script which is diverting any packet coming for h2 to h1, which is at switch s2. So

Re: [pox-dev] Problem, Sending back packet out from in_port after modifying packet

2015-03-03 Thread chaitanya tanwar
> use OFPP_IN_PORT as a port number. This is to prevent packets looping in > the network as usually sending packets back is a bad idea (i.e., the peer > switch would probably send the packet again to us) > > Peter > > On Tue, Mar 3, 2015 at 2:35 PM, chaitanya tanwar &

[pox-dev] Problem, Sending back packet out from in_port after modifying packet

2015-03-03 Thread chaitanya tanwar
Hello everyone, Lets say we have switch s1, connected to h1 through port 1 and connected to s2 through port 2. As a packet arrives at port 2 from s2 to s1. I am modifying its destination mac and ip addresses and sending that back from the same port i.e. output port 2. But wireshark is not showin

[pox-dev] Installed some rules,worked for ping but not for wget.

2015-02-20 Thread chaitanya tanwar
Hi all, *My network :* 2 switches, 1 pox controller and 3 host. c0 / \ s1- s2 / \ \ h1h2h3 h1 - 1

[pox-dev] Proxy Server on Openvswitch

2015-01-09 Thread chaitanya tanwar
Hi All, I want to set up proxy server on one openvswitch in the network where i created the network using mininet and using POX as controllet. Is it possible? Please help. Thanks and Regards.

Re: [pox-dev] Web Server in Network

2015-01-02 Thread chaitanya tanwar
Thanks Lucas got it :) On Thu, Jan 1, 2015 at 7:31 PM, Lucas Brasilino wrote: > Hi! > > > > I have used mininet to build a small network. After building a two host > one > > switch and one controller(POX) network. > > I want to have a web server at one host so that from another host, I can > > j

[pox-dev] Web Server in Network

2014-12-31 Thread chaitanya tanwar
Hi Pox Community, I have used mininet to build a small network. After building a two host one switch and one controller(POX) network. I want to have a web server at one host so that from another host, I can just download small files and measure its performance. How can build a webserver ? And then

Re: [pox-dev] Over-writing table entries

2014-12-18 Thread chaitanya tanwar
Thank you Murphy. Now its working. I have to mention the MAC addresses too. Best Regards. On Fri, Dec 19, 2014 at 8:39 AM, Murphy McCauley wrote: > > Did you read the third item in the FAQ? > > On Dec 18, 2014, at 8:14 AM, chaitanya tanwar > wrote: > > My overall aim is

Re: [pox-dev] Over-writing table entries

2014-12-18 Thread chaitanya tanwar
the POX FAQ. > > I also think the second entry you're trying to install has problems (too > many actions). > > -- Murphy > > On Dec 17, 2014, at 9:54 AM, chaitanya tanwar > wrote: > > Hi all, > > I am using the following code to insert flowtable entires in

[pox-dev] Over-writing table entries

2014-12-17 Thread chaitanya tanwar
Hi all, I am using the following code to insert flowtable entires in switch. I want to fill two table entries but the following code is only putting the last one, may be overwriting the previously written. How to resolve this? from pox.core import core > import pox.openflow.libopenflow_01 as of >

[pox-dev] Overriding the l2_learning module

2014-12-15 Thread chaitanya tanwar
I have created a script to install one rule in all switches. i am starting that script as.. $ pox.py forwarding.l2_learning diversion $ "Diversion" is my script but the problem is that when I am attaching it to learning module, only the diversion script rule is there in flowtable of switches. And

Re: [pox-dev] Suggestions! Whats wrong with 2nd code?

2014-12-15 Thread chaitanya tanwar
How to update this version? I got it with mininet. On Mon, Dec 15, 2014 at 1:39 PM, Murphy McCauley wrote: > > You're using an outdated version of POX (betta). You should probably > upgrade to dart or eel. > > -- Murphy > > > On Dec 15, 2014, at 12:06 AM, chaitanya

Re: [pox-dev] Suggestions! Whats wrong with 2nd code?

2014-12-15 Thread chaitanya tanwar
ribed in the POX manual. If > you want, turn up the logging level to DEBUG using the log.level module as > described in the POX manual. > > -- Murphy > > On Dec 14, 2014, at 10:54 PM, chaitanya tanwar > wrote: > > Can you suggest some points. > Where should i run my P

Re: [pox-dev] Suggestions! Whats wrong with 2nd code?

2014-12-14 Thread chaitanya tanwar
out being able to read the log is like > trying to do a puzzle in the dark. > > Figure out how to read the log. > > -- Murphy > > On Dec 14, 2014, at 10:36 PM, chaitanya tanwar > wrote: > > But there is some problem due to my 2nd code becuase when I ran the pox &g

Re: [pox-dev] Suggestions! Whats wrong with 2nd code?

2014-12-14 Thread chaitanya tanwar
e a Mininet question. > > I always set up Mininet to use a remote controller and then just run POX > myself. By default, POX displays its log on standard output. > > -- Murphy > > On Dec 14, 2014, at 10:27 PM, chaitanya tanwar > wrote: > > I am new to SDN. How can i

Re: [pox-dev] Suggestions! Whats wrong with 2nd code?

2014-12-14 Thread chaitanya tanwar
really > informative. > > -- Murphy > > On Dec 14, 2014, at 9:56 PM, chaitanya tanwar > wrote: > > *I have created a network using the following code, and pox as remote > controller with l2.learning module.* > > > #!/usr/bin/python > from mininet.net import

[pox-dev] Suggestions! Whats wrong with 2nd code?

2014-12-14 Thread chaitanya tanwar
*I have created a network using the following code, and pox as remote controller with l2.learning module.* #!/usr/bin/python from mininet.net import Mininet from mininet.node import Controller, RemoteController, OVSController from mininet.node import CPULimitedHost, Host, Node from mininet.node i