- Community Home
- >
- Networking
- >
- Software Defined Networking
- >
- Traffic Engineering with SDN
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2016 01:50 PM
06-21-2016 01:50 PM
Hi everyone. I am trying to develop a traffic engineering simulation sdn app, but I'm having trouble to get the traffic to go to the hosts.
Imagine this scenarium:
h0 <--> s0 <--> s1 <---> h1
I'm pinging h1 on the h0 CLI and s0 gets the first packet, applies a rule and all next pings match the rule. When I check the HP Controller Inferface via Firefox, I can see through the flows interface of each switch that s0 and s1 are getting packets that match the flow entry. Still, h0 ins't pinging h1... There are images attached to show the problem.
NOTE: I'm using a custom topology on mininet and I specified that the port between a switch and a host is 500.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2016 12:06 PM
06-22-2016 12:06 PM
SolutionI noticed that in s0.png, you have a flow that matches ipv4_src=10.0.0.1,ipv4_dst=10.0.0.2 and applies a set_field[vlan_vid:1] action to that packet before outputting to port 1.
I'm not sure how mininet handles vlan tagging, but I don't think that hosts send packets with an 802.1q header. You might need to include push_vlan (in order to add the 802.1q header) for packets arriving from hosts, so that they can traverse the port 500 link between the switches. Then you'd also need a pop_vlan action to strip that vlan tag when the packet is output to the other host port.
Someone please correct me if this is bad information. :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2016 07:20 AM
06-23-2016 07:20 AM
Re: Traffic Engineering with SDN
It worked out as a charm, thank you very much!