Re: [ovs-discuss] Tunneling in Openstack Quantum

2013-03-05 Thread Aaron Rosen
Hi Response inline: On Tue, Mar 5, 2013 at 2:00 PM, Martin Mailand wrote: > Hi List, > > I hope this is ok to ask here. I looked through the Code of Quantum and > I don't understand how the gre tunneling is working. > I have two bridges br-int and br-tun, both are connected via a patch > port. B

Re: [ovs-discuss] openvswitch plugin for xenserver and openstack

2012-10-18 Thread Aaron Rosen
Hi Martins, This is correct. This is due to xenserver's python 2.4 where requires quantum is 2.6+ Aaron On Thu, Oct 18, 2012 at 2:54 PM, Ben Pfaff wrote: > On Thu, Oct 18, 2012 at 02:35:30PM +0300, M?rti?? Balodis wrote: > > The openvswitch documentation for openstack states that the > > openv

Re: [ovs-discuss] p

2012-08-29 Thread Aaron Rosen
~/.bashrc " > With special thanks > > On 8/30/12, Aaron Rosen wrote: > > Put this in your .bashrc > > > > export PATH=$PATH:/usr/local/sbin > > then source ~/.bashrc > > > > On Wed, Aug 29, 2012 at 12:16 PM, rahim entezari > > wrote: > >

Re: [ovs-discuss] p

2012-08-29 Thread Aaron Rosen
Put this in your .bashrc export PATH=$PATH:/usr/local/sbin then source ~/.bashrc On Wed, Aug 29, 2012 at 12:16 PM, rahim entezari wrote: > I am beginner, please tell me how to install ovsdb-server in my $PATH > > On 8/29/12, Ben Pfaff wrote: > > On Wed, Aug 29, 2012 at 09:38:23AM -0400, rahim e

Re: [ovs-discuss] Secure mode

2012-08-09 Thread Aaron Rosen
man 5 ovs-vswitchd.conf.db fail_mode: optional string, either secure or standalone When a controller is configured, it is, ordinarily, responsible for setting up all flows on the switch. Thus, if the connection to the controller fails, no new netw

Re: [ovs-discuss] get ovs-dpctl stat remotely

2012-04-06 Thread Aaron Rosen
Also, if you use OpenFlow then instead of using ovs-ofctl you can query OVS for the flow stats via OFPT_STATS_REQUEST. Aaron On Thu, Apr 5, 2012 at 10:43 PM, Justin Pettit wrote: > No, you can't get the stats remotely from ovs-dpctl. You can use > ovs-ofctl, but it will only give you stats for

Re: [ovs-discuss] Openflow packets

2012-04-04 Thread Aaron Rosen
Hi Sonny, The wireshark dissector only decodes streams as OpenFlow if they are running on tcp port 6633. In order to get it to decode non 6633 streams you can right click on the stream->decode as->and set it to decode as OFP. Aaron On Thu, Apr 5, 2012 at 12:37 AM, sonny sonny wrote: > hi, > >

Re: [ovs-discuss] Same mac address of br0 and eth0

2012-03-21 Thread Aaron Rosen
adopted? > > Cheers, > > Jfhu > > > 2012/3/21 Aaron Rosen > >> As a blind guess does this change anything (Using tunctl over your >> openvpn command)? >> >> ovs-vsctl del-port br0 tap0 >> tunctl -d tap0 >> tunctl >> ovs-vsctl add-p

Re: [ovs-discuss] Same mac address of br0 and eth0

2012-03-20 Thread Aaron Rosen
As a blind guess does this change anything (Using tunctl over your openvpn command)? ovs-vsctl del-port br0 tap0 tunctl -d tap0 tunctl ovs-vsctl add-port br0 tap0 Restart vm using the new tap0 On Wed, Mar 21, 2012 at 1:20 AM, Ben Pfaff wrote: > The evidence points to a configuration error, s

Re: [ovs-discuss] Best practice trouble-shooting

2012-03-14 Thread Aaron Rosen
*Display datapath controller connection information: * ovs-vsctl list controller On Wed, Mar 14, 2012 at 6:39 PM, Aaron Rosen wrote: > Just to add to this list, I also find this command helpful in debugging > openflow: > > *Print out all the openflow messages: * > ovs-ofctl sn

Re: [ovs-discuss] Best practice trouble-shooting

2012-03-14 Thread Aaron Rosen
Just to add to this list, I also find this command helpful in debugging openflow: *Print out all the openflow messages: * ovs-ofctl snoop * *And these for setting up OVS with openflow * Set datapath id:* ovs-vsctl set bridge other-config:datapath-id= *Set controller: * ovs-vsctl set-controller

Re: [ovs-discuss] How to connect two open vswitch bridges in a single physical host ?

2012-03-09 Thread Aaron Rosen
Are all the interfaces up (and vswitchd and ovsdb-server) running? Aaron On Fri, Mar 9, 2012 at 6:41 AM, ABDULHAMID NOOR wrote: > Thanks for previous suggestion. > > No connectiving between VMs connected to differnet open vswitch bridges. > I use patch port to connect two open vswitch bridges "s

Re: [ovs-discuss] how can I tell if controller is connected?

2012-02-20 Thread Aaron Rosen
ovs-vsctl list controller On Mon, Feb 20, 2012 at 4:31 PM, Rob Sherwood wrote: > Apologies if this is a FAQ, but I can't seem to figure this out from the docs. > > Is there a command that I can use to ask OVS if it has successfully > connected to the controller?  I thought this information was

Re: [ovs-discuss] VLAN problem on Xenserver OVS and NOX

2012-02-15 Thread Aaron Rosen
Would packets be sent to the controller with or without vlan tag? Either way the only action you should need is output I think (You shouldn't need to add OFPAT_SET_VLAN_VID before output)? One issue you could be running into here is that pyswitch would not let you have duplicate MAC addresses on t

Re: [ovs-discuss] Rate limiting on patch ports

2012-02-15 Thread Aaron Rosen
Hi Janis, I don't think you can do this with patch ports, but I've been able to do this in OVS using veth. Aaron On Wed, Feb 15, 2012 at 8:29 PM, Janis Hamme wrote: > Hi, > I connected br0 and br1 using a patch port. I tried to limit the rate on > the link between br0 and br1 using this guide:

Re: [ovs-discuss] [PATCH] ofproto/ofproto-dpif.c don't forward ofp_port == ctx->flow.in_port

2012-02-07 Thread Aaron Rosen
r would be in xlate_output_action__(). >> >> Ethan >> >> On Tue, Feb 7, 2012 at 17:53, Aaron Rosen wrote: >> > Or it might be better to just reject this packet? >> > >> > Aaron >> > >> > On Tue, Feb 7, 2012 at 8:22 PM, Aaron Ro

Re: [ovs-discuss] [PATCH] ofproto/ofproto-dpif.c don't forward ofp_port == ctx->flow.in_port

2012-02-07 Thread Aaron Rosen
't performing this check, the appropriate place > to fix the behavior would be in xlate_output_action__(). > > Ethan > > On Tue, Feb 7, 2012 at 17:53, Aaron Rosen wrote: >> Or it might be better to just reject this packet? >> >> Aaron >> >> On Tue

Re: [ovs-discuss] [PATCH] ofproto/ofproto-dpif.c don't forward ofp_port == ctx->flow.in_port

2012-02-07 Thread Aaron Rosen
Or it might be better to just reject this packet? Aaron On Tue, Feb 7, 2012 at 8:22 PM, Aaron Rosen wrote: > Hello, > > This patch corrects the behavior when an OFPAT_PACKET_OUT is received > and the in_port is in the output action list. In these cases packets > should not

[ovs-discuss] [PATCH] ofproto/ofproto-dpif.c don't forward ofp_port == ctx->flow.in_port

2012-02-07 Thread Aaron Rosen
to in_port). Example: OFPT_PACKET_OUT (xid=0x0): in_port=LOCAL actions_len=16 actions=output:1,LOCAL data_len=60 This packet is output to ports 1 and LOCAL,but should just output to port 1. Thanks, Aaron Signed-off-by: Aaron Rosen --- ofproto/ofproto-dpif.c |5 + 1 files changed, 5

Re: [ovs-discuss] ofctl connection

2012-01-10 Thread Aaron Rosen
and socket connection like tcp::port > > I am getting error for this. > > ** ** > > Regards, > > Sheili > > ** ** > > ** ** > > *From:* Aaron Rosen [mailto:aro...@clemson.edu] > *Sent:* 11 January 2012 10:09 > *To:* Sheili Mittal >

Re: [ovs-discuss] not seeing return packets from IN_PORT

2012-01-10 Thread Aaron Rosen
ives error “protocol family not supported” > > ** ** > > Regards, > > Sheili > > ** ** > > *From:* discuss-boun...@openvswitch.org [mailto: > discuss-boun...@openvswitch.org] *On Behalf Of *Aaron Rosen > *Sent:* 11 January 2012 07:30 > *To:* Ben

Re: [ovs-discuss] not seeing return packets from IN_PORT

2012-01-10 Thread Aaron Rosen
0.0.0.255 Mask:255.255.255.0 On Tue, Jan 10, 2012 at 7:11 PM, Ben Pfaff wrote: > As an experiment, you could start to add "printk"s to the kernel > module. That's what I'd do next while debugging the problem. > > On Tue, Jan 10, 2012 at 05:10:38PM -0500, Aaron

Re: [ovs-discuss] not seeing return packets from IN_PORT

2012-01-10 Thread Aaron Rosen
tp_dst:9877,IN_PORT #packet is not returned. On Tue, Jan 10, 2012 at 3:02 PM, Aaron Rosen wrote: > Here are lines (154-158) from here http://codepad.org/APdmOTGN (more debug) > > Thanks, > > Aaron > > Jan 10 14:46:07 localhost ovs-vswitchd: 04385|dpif|DBG|system@dp0: miss >

Re: [ovs-discuss] not seeing return packets from IN_PORT

2012-01-10 Thread Aaron Rosen
. > > On Tue, Jan 10, 2012 at 01:35:48PM -0500, Aaron Rosen wrote: > > I'd be curious what the expected behavior should be if linux sees a > packet > > arriving on an interface matching it's dl_src/src_ip. (Since this should > > have probably gone through lo )

Re: [ovs-discuss] not seeing return packets from IN_PORT

2012-01-10 Thread Aaron Rosen
0, 2012 at 1:32 PM, Aaron Rosen wrote: > These packets are the normal SYN packets to initial a TCP connection. > > The weird thing though is if I use this flow_mod it works fine: (using a > fake ip/mac as the response). > > cookie=0x0, duration=6.622s, table=0, n_packets=93776

Re: [ovs-discuss] not seeing return packets from IN_PORT

2012-01-10 Thread Aaron Rosen
") so both packets were actually processed in userspace; > perhaps there is a bug in the userspace processing, which is currently > in transition. > > On Tue, Jan 10, 2012 at 01:12:59PM -0500, Aaron Rosen wrote: > > pg46 openvswitch # ovs-ofctl dump-flows dp0 > > NXST_FLO

Re: [ovs-discuss] not seeing return packets from IN_PORT

2012-01-10 Thread Aaron Rosen
atapath actions: set(eth(src=00:1f:29:32:92:4d,dst=00:1f:29:32:92:4d)),set(ipv4(src=10.0.0.10,dst=10.0.0.10,proto=6,tos=0,ttl=64,frag=no)),set(tcp(src=58209,dst=9877)),0 On Tue, Jan 10, 2012 at 12:28 PM, Ben Pfaff wrote: > On Tue, Jan 10, 2012 at 12:15:39PM -0500, Aaron Rosen wrote: >>

[ovs-discuss] not seeing return packets from IN_PORT

2012-01-10 Thread Aaron Rosen
Hello, I have a quick question about what could be happening to these packets. I start a tcp connection 10.0.0.10 > 10.0.0.13: 12:02:55.961344 00:1f:29:32:92:4d (oui Unknown) > 00:1b:21:6a:85:88 (oui Unknown), ethertype IPv4 (0x0800), length 74: 10.0.0.10.50490 > 10.0.0.13.5004: S Then the foll

Re: [ovs-discuss] fail-mode secure behavior

2011-11-13 Thread Aaron Rosen
wrote: > Are you in inband mode? If so this is expected. > > Sent from my HTC smartphone on the Now Network from Sprint! > > > - Reply message ----- > From: "Aaron Rosen" > To: > Subject: [ovs-discuss] fail-mode secure behavior > Date: Sun, Nov 13, 201

[ovs-discuss] fail-mode secure behavior

2011-11-13 Thread Aaron Rosen
Hello I had a quick question about the fail secure behavior. I have created a dp0 and added eth3.1750 to it. Then I put 10.43.100.14 on dp0. Now if I run ping -I dp0 10.43.100.34 , and run tcpdump on eth3 I see my arp packets leaving the box even though I have dp0 set as fail-secure. Is this t

Re: [ovs-discuss] How to apply VLAN tag in different hosts?

2011-09-07 Thread Aaron Rosen
be used in VMs) in > advance? > > Thanks, > Jen-Wei > On Thu, Sep 8, 2011 at 11:30 AM, Aaron Rosen wrote: >> >> Is the trunk port on the cisco switch set to be the same vlan id that >> is coming out of the VMs? >> >> Aaron >> >> On Wed, Sep 7

Re: [ovs-discuss] How to apply VLAN tag in different hosts?

2011-09-07 Thread Aaron Rosen
Is the trunk port on the cisco switch set to be the same vlan id that is coming out of the VMs? Aaron On Wed, Sep 7, 2011 at 10:34 PM, Ben Pfaff wrote: > I only know how to configure OVS. > > On Thu, Sep 08, 2011 at 10:31:38AM +0800, Jen-Wei Hu wrote: >> Thanks for your quick reply. Could you ki

Re: [ovs-discuss] system@dp0: execute 0, 1 failed (Invalid argument) on packet

2011-09-05 Thread Aaron Rosen
Thanks guys, I switched to OFPP_LOCAL and it works. Aaron On Fri, Sep 2, 2011 at 11:43 PM, Nicholas Bastin wrote: > On Fri, Sep 2, 2011 at 16:46, Jesse Gross wrote: >> >> Even before when OVS was less picky about the input port, it didn't >> implement the behavior that you're describing in ter

Re: [ovs-discuss] system@dp0: execute 0, 1 failed (Invalid argument) on packet

2011-09-01 Thread Aaron Rosen
OpenFlow spec and should be > supported.  In this case, I believe that OFPP_NONE is the correct port > to use, although OVS will not like that either. > > In the meantime, either OFPP_LOCAL or a real port should behave correctly. > > On Thu, Sep 1, 2011 at 4:21 PM, Aaron Rosen wro

Re: [ovs-discuss] system@dp0: execute 0, 1 failed (Invalid argument) on packet

2011-09-01 Thread Aaron Rosen
Opps, I mean: inport=openflow.OFPP_CONTROLLER I was talking about outport. Aaron On Thu, Sep 1, 2011 at 7:19 PM, Aaron Rosen wrote: > I  tried both OFPP_FLOOD, in addition to OFPAT_OUTPUT 1 and 65534 > > Thanks, > > Aaron > > P.S: attached in the first message is a d

Re: [ovs-discuss] system@dp0: execute 0, 1 failed (Invalid argument) on packet

2011-09-01 Thread Aaron Rosen
it OFPP_NONE? > > On Thu, Sep 1, 2011 at 8:29 AM, Aaron Rosen wrote: >> No problem: >> >> It says, >> >> Sep  1 15:28:56 planetlab4 ovs-vswitchd: 00192|dpif|WARN|system@dp0: >> execute 0,1 failed (Invalid argument) on packet 66:f3:43:38:f4:a2 > >> Broadca

Re: [ovs-discuss] system@dp0: execute 0, 1 failed (Invalid argument) on packet

2011-09-01 Thread Aaron Rosen
f failure instead of reporting a generic EINVAL.  It's a kernel > patch, so you'll have to reload the kernel module and then look for > relevant log messages in dmesg. > > On Mon, Aug 29, 2011 at 10:39 PM, Aaron Rosen wrote: >> Also, If it helps debug I could provide the

Re: [ovs-discuss] system@dp0: execute 0, 1 failed (Invalid argument) on packet

2011-08-29 Thread Aaron Rosen
tin Pettit wrote: > Can you confirm there's no mismatch? If you're running the latest from > git, try running: > >./ovs-appctl version > > and: > >dmesg | grep "Open vSwitch" > > to make sure they match. > > --Justin > &g

Re: [ovs-discuss] system@dp0: execute 0, 1 failed (Invalid argument) on packet

2011-08-29 Thread Aaron Rosen
I'm using the kernel version not the userspace ( unless my understanding of this is unclear) Also, I'm near positive I'm not mixing versions. Aaron On Mon, Aug 29, 2011 at 10:16 PM, Jesse Gross wrote: > On Tue, Aug 30, 2011 at 12:30 AM, Aaron Rosen wrote: > > He

Re: [ovs-discuss] system@dp0: execute 0, 1 failed (Invalid argument) on packet

2011-08-29 Thread Aaron Rosen
, Aaron On Mon, Aug 29, 2011 at 11:30 AM, Aaron Rosen wrote: > Hello, > > I'm sending ARP packets from my openflow controller and everything seems to > be working on hardware switches though on OVS I'm getting the following > error in /var/log/messages. > > ovs-

[ovs-discuss] system@dp0: execute 0, 1 failed (Invalid argument) on packet

2011-08-29 Thread Aaron Rosen
Hello, I'm sending ARP packets from my openflow controller and everything seems to be working on hardware switches though on OVS I'm getting the following error in /var/log/messages. ovs-vswitchd: 70867|dpif|WARN|Dropped 1 log messages in last 1 seconds (most recently, 1 seconds ago) due to exces

[ovs-discuss] Help adding SCTP support to OVS

2011-08-02 Thread Aaron Rosen
Hello, I would like to add SCTP support to OVS but I'm running into a couple difficulties. After making my chances for sctp when I go to load openvswitch_mod.ko I get the following message from dmesg: openvswitch_mod: Unknown symbol sctp_statistics (err 0) SCTP has near the same packet header

Re: [ovs-discuss] Fail Open not failing open?

2011-06-06 Thread Aaron Rosen
display version information --check-leaks=FILE log malloc and free calls to FILE On Mon, Jun 6, 2011 at 3:53 PM, Ben Pfaff wrote: > On Mon, Jun 06, 2011 at 03:43:07PM -0400, Aaron Rosen wrote: > > I would like my openflow switches to fail open but they don't seem

[ovs-discuss] Fail Open not failing open?

2011-06-06 Thread Aaron Rosen
Hello, I'm running the latest source code from git. (Last commit is commit b3e9b2eda9ae5be2ac2b7917858732738a818b66) I would like my openflow switches to fail open but they don't seem to be. When I add --fail=open I see the same behavior. I'm unable to ping into my VM's. When I fire up a controll

Re: [ovs-discuss] Running userspace as nonroot

2011-04-09 Thread Aaron Rosen
ily not supported by protocol) Thanks, Aaron On Fri, Apr 8, 2011 at 7:42 PM, Ben Pfaff wrote: > On Fri, Apr 08, 2011 at 04:05:27PM -0400, Aaron Rosen wrote: > > I'm trying to use ovs without the kernel module. When I start ovs-vswitch > > I'm getting the following error

Re: [ovs-discuss] Running userspace as nonroot

2011-04-08 Thread Aaron Rosen
2011 at 3:33 PM, Ben Pfaff wrote: > On Fri, Apr 08, 2011 at 03:27:14PM -0400, Aaron Rosen wrote: > > arosen@ubuntu:~/devel/openvswitch$ ovs-vsctl > > --db=unix:/home/arosen/usr/local/var/run/openvswitch/db.sock add-br br0 > > Apr 08 19:25:45|2|ovsdb_idl|WARN|syntax > &

Re: [ovs-discuss] Running userspace as nonroot

2011-04-08 Thread Aaron Rosen
--remote=punix:/usr/local/var/run/openvswitch/db.sock \ --remote=db:Open_vSwitch,manager_options \ --private-key=db:SSL,private_key \ --certificate=db:SSL,certificate \ --bootstrap-ca-cert=db:SSL,ca_cert

Re: [ovs-discuss] Running userspace as nonroot

2011-04-08 Thread Aaron Rosen
(Address family not supported by protocol)* Any idea where I went wrong? Also the INSTALL.Linux file seems to be out of date because ovsdb-server no longer has the pki configuration. Thanks, Aaron On Fri, Apr 8, 2011 at 2:39 PM, Aaron Rosen wrote: > Opps Sorry I think I was using an old ov

Re: [ovs-discuss] Running userspace as nonroot

2011-04-08 Thread Aaron Rosen
Opps Sorry I think I was using an old ovsdb-tool to do that. Let me confirm. On Fri, Apr 8, 2011 at 2:38 PM, Aaron Rosen wrote: > Hello, I just did a fresh checkout and when I try to do ovsdb-tool create I > get the following: > > syntax error: failed to parse "vswitchd/vswi

Re: [ovs-discuss] Running userspace as nonroot

2011-04-08 Thread Aaron Rosen
http://pastebin.com/Ztv18QbU <-- full output Thanks, Aaron On Mon, Apr 4, 2011 at 4:56 PM, Ben Pfaff wrote: > On Mon, Apr 04, 2011 at 04:38:39PM -0400, Aaron Rosen wrote: > > When I run: > > > > ovs-vsctl add-br br0 > > > > It just hangs. If I control C that an

Re: [ovs-discuss] Running userspace as nonroot

2011-04-04 Thread Aaron Rosen
22 PM, Ben Pfaff wrote: > > On Mon, Apr 04, 2011 at 04:20:23PM -0400, Aaron Rosen wrote: > > Apr 04 > > 16:18:28|1|daemon|ERR|/usr/local/var/run/openvswitch/ovsdb-server.pid.tmp2241: > > create failed: Permission denied > > > > Is that string hard coded in OV

[ovs-discuss] Running userspace as nonroot

2011-04-04 Thread Aaron Rosen
Hello, I'm wondering how much of userspace ovs can be run not being root. I've done the following: mkdir -p ~/etc/openvswitch ovsdb-tool create ~/etc/openvswitch/conf.db vswitchd/vswitch.ovsschema ovsdb-server ~/etc/openvswitch/conf.db \ --remote=punix:~/usr/local/var/run

[ovs-discuss] Userspace vswitch

2011-03-29 Thread Aaron Rosen
Hello I'm trying to use openvswitch in userspace. I'm following the instructions here: http://openvswitch.org/cgi-bin/gitweb.cgi?p=openvswitch;a=blob_plain;f=INSTALL.userspace;hb=HEAD Though when I run I get: [root@chimney arosen]# ovs-vsctl add-br br0 Mar 29 20:36:14|2|stream_unix|ERR|/

Re: [ovs-discuss] Forwarding between Multiple interfaces Openflow

2011-03-06 Thread Aaron Rosen
This may be a silly question but if a dp does not have an IP address then you have to use out-of band right? Thanks, Aaron On Fri, Mar 4, 2011 at 3:08 PM, Aaron Rosen wrote: > Hi Ben, > > Sorry to bring this back up but for some reason I can't get this working > again and I w

Re: [ovs-discuss] Forwarding between Multiple interfaces Openflow

2011-03-04 Thread Aaron Rosen
5.255.255.0 U 0 00 dp0 Because of this I would expect to the the packet on dp0 but I don't (when running tcpdump on dp0). Any ideas why? Thanks, Aaron On Tue, Mar 1, 2011 at 1:18 AM, Ben Pfaff wrote: > On Mon, Feb 28, 2011 at 10:13 PM, Aaron Rosen wrote: >

Re: [ovs-discuss] Forwarding between Multiple interfaces Openflow

2011-03-01 Thread Aaron Rosen
:18 AM, Ben Pfaff wrote: > On Mon, Feb 28, 2011 at 10:13 PM, Aaron Rosen wrote: > > For some reason that added route does not send packets to the dp0 > > interface. (Any idea's? I'm still looking around. I enabled > > log_martians on everything and nothing is showi

Re: [ovs-discuss] Forwarding between Multiple interfaces Openflow

2011-02-28 Thread Aaron Rosen
92.168.1.3) ip address. Thanks again! Aaron On Tue, Mar 1, 2011 at 12:47 AM, Ben Pfaff wrote: > On Mon, Feb 28, 2011 at 9:38 PM, Aaron Rosen wrote: >> Is there anyway to prevent this from happening if I want to send the >> packet to 192.168.1.2? I tried removing the ip add

Re: [ovs-discuss] Forwarding between Multiple interfaces Openflow

2011-02-28 Thread Aaron Rosen
e. An ICMP message of host 192.168.1.2 unreachable is just sent back. Thanks again, Aaron -- Forwarded message -- From: Ben Pfaff Date: Tue, Mar 1, 2011 at 12:26 AM Subject: Re: [ovs-discuss] Forwarding between Multiple interfaces Openflow To: Aaron Rosen Cc: discuss@openvswitc

Re: [ovs-discuss] Forwarding between Multiple interfaces Openflow

2011-02-28 Thread Aaron Rosen
have the destination address of 192.168.1.2 (dp0). The packet is never actually seen at the dp0 interface. Thanks, Aaron On Mon, Feb 28, 2011 at 11:37 PM, Ben Pfaff wrote: > On Mon, Feb 28, 2011 at 8:04 PM, Aaron Rosen wrote: >> Any idea what could be going on here: >> >

Re: [ovs-discuss] Forwarding between Multiple interfaces Openflow

2011-02-28 Thread Aaron Rosen
outing tables handle this or not at all? Thanks, Aaron On Mon, Feb 28, 2011 at 10:58 PM, Ben Pfaff wrote: > On Mon, Feb 28, 2011 at 7:39 PM, Aaron Rosen wrote: > > I have one more question, If dp0 receives a packet that is not ip > > protocol 0x800 but instead is an IPIP packet

Re: [ovs-discuss] Forwarding between Multiple interfaces Openflow

2011-02-28 Thread Aaron Rosen
acket? I'm using openvswitch-1.1.0pre2.tar.gz Thanks, Aaron P.S I'm pretty sure this isn't an OVS problem but more of me not configuring something correctly. On Mon, Feb 28, 2011 at 8:08 PM, Ben Pfaff wrote: > On Mon, Feb 28, 2011 at 07:24:44PM -0500, Aaron Rosen wrote: &g

[ovs-discuss] Forwarding between Multiple interfaces Openflow

2011-02-28 Thread Aaron Rosen
Hello, I have a computer with several interfaces on it. One of the interface's is directly connected to the internet and this where my dp0 of openvswitch is connected. When I receive packets at this interface they get sent to my openflow controller as packet-in events. At my controller I tell the