Re: [pox-dev] NATting using POX Controller

2013-07-19 Thread kk yap
Hi, I am curious on why NAT is not possible. The basic requirement of NAT is look at the IP addresses and TCP ports, rewrite those, then install the reverse flow similarly. This should be doable in the most basic of OpenFlow switches. Are you trying to do this in a proactive manner? Regards KK

Re: [pox-dev] POX TCPTransport

2013-05-01 Thread kk yap
Hi Igor, (cc-ing pox-dev) I did not have much luck reusing the select loop in POX. I ended up (in my mind) with the worst option possible. I essentially run my own select loop and raises events using POX. Unfortunately, I don't have the time to dig deeper into this to make it cleaner. FYI. R

Re: [pox-dev] Has anyone actually used TCPTransport

2013-04-11 Thread kk yap
SSL variety going simultaneously. IOWorker got > an upgrade as part of this, and I think it worked out pretty well. > > -- Murphy > > On Apr 11, 2013, at 6:00 PM, kk yap wrote: > >> Which would you recommend? >> >> Btw, I do want the socket to be capable of support

Re: [pox-dev] Has anyone actually used TCPTransport

2013-04-11 Thread kk yap
t server thing that runs in its > own cooperative Task (i.e. a yield Select() loop, like of_01) > 3) Use the lib.io_worker IOWorker abstraction (basically a wrapper around #2) > > -- Murphy > > On Apr 11, 2013, at 5:46 PM, kk yap wrote: > >> Hi, >> >> Has any

[pox-dev] Has anyone actually used TCPTransport

2013-04-11 Thread kk yap
Hi, Has anyone actually used messenger.TCPTransport? My goal is to handle TCP connections with binary messages. So, I am hoping that I can reuse this component. Any advice is appreciated. Regards KK

Re: [pox-dev] GUI for POX

2013-04-11 Thread kk yap
Ignore this. I found the documentation at https://github.com/MurphyMc/poxdesk/wiki/Getting-Started. Regards KK On 11 April 2013 17:11, kk yap wrote: > Hi, > > I am trying to figure out is POX's betta branch supports any GUI. I > tried POXDesk (https://github.com/MurphyMc/pox

[pox-dev] GUI for POX

2013-04-11 Thread kk yap
Hi, I am trying to figure out is POX's betta branch supports any GUI. I tried POXDesk (https://github.com/MurphyMc/poxdesk) but that is looking for WebServer and MessengerNexus_of_service, both of which I have failed to locate. I am clearly green with POX here, so some help is appreciated. Than