I will try to use ONOS with a HP switch and i would like to ask you some questions in advance.I am using EMU edition and i have installed it from the .tar.
1) Trying to configure the timeouts for the flows cached in the switch. When i edited and uncommented /onos-1.4.0/apache-karaf-3.0.3/etc/samples/org.onosproject.fwd.ReactiveForwarding.clf and set the flows timeout from 10 sec to 30 sec, nothing happened.. is this the correct script to configure? or how do i configure basic parameters of the fwd switch?
2)Is there any documentation how to create access control lists?
after enabling org.onosproject.acl,what are the following steps to create basic rules?
3)I guess forwarding component is enough to handle with vlans created by the switch, right? i can set specific ports only to be vlan enabled, not all of them (vlan1) and the controller should perform correctly?
4)Sometimes when i create a topology in mininet, then create a new one ,some components are geting cached and displayed by the gui,even though i restart the controller.... is there a way to get rid of the previous view of the controller? sometimes i have to install it from the beginning
5)Regarding the 1 and 2 questions, if i edit configuration files such as in apache-karaf folder, do they replicate in other controllers using a cluster? (can't test it cause i dont even know,which are the correct configuration files so far)
Thanks in advance for your time!Any help would be very much appreciated and will help me to continue with my project and provide feedback to the community.
--
You received this message because you are subscribed to the Google Groups "ONOS Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to onos-dev+u...@onosproject.org.
To post to this group, send email to onos...@onosproject.org.
Visit this group at https://groups.google.com/a/onosproject.org/group/onos-dev/.
To view this discussion on the web visit https://groups.google.com/a/onosproject.org/d/msgid/onos-dev/4f0c1aac-8780-426c-b1b4-359c7ef4bf48%40onosproject.org.
1)By seting matchVlanId true and maybe 2 seperate Vlans for the hosts with untagged ports and one tagged port for the router, will packets be forwarded to the router? or ReactiveForwarding is not meant to work with routers attached??
2)By seperating openflow,to openfllow base,lldpprovider and host provider in the last release, the purpose of lldpprovider is mainly to prevent loops like traditional STP protocols and host provider to learn about hosts right?
I assume that Reactive forwarding only matching source and destination uses broadcasts to learn for unknown hosts as traditional switched do, and then update the mac table...but i have seen so many implementations for learning hosts in SDN such as llddp and bbdp for host discovery, so i am so confused.
(there is an open issue with ACL in ONOS, i point it out, if someone would like to help)
thanks a lot again!!!
1)By seting matchVlanId true and maybe 2 seperate Vlans for the hosts with untagged ports and one tagged port for the router, will packets be forwarded to the router? or ReactiveForwarding is not meant to work with routers attached??
2)By seperating openflow,to openfllow base,lldpprovider and host provider in the last release, the purpose of lldpprovider is mainly to prevent loops like traditional STP protocols and host provider to learn about hosts right?
I assume that Reactive forwarding only matching source and destination uses broadcasts to learn for unknown hosts as traditional switched do, and then update the mac table...but i have seen so many implementations for learning hosts in SDN such as llddp and bbdp for host discovery, so i am so confused.
I read some HP manuals and i am not sure if it's going to work in practise, but when you configure a port with a specific vlan then a vlan tag is added every time a packet_in event happens from packets from this port.Charles thanks a lot and sorry for the continous questions, just one lastI would like to describe you my consept and give me your opinion as you are a guru in SDN.
Supposedly VLAN push and pop is handled correctly by the switch itself, after Reactive Forwarding learns (with vlan cfg enabled) about the two hosts in different vlans it will update it's mac table and install flow rules.Now the switch will forward directly the packets for the time cached, from one vlan to an other (supposedely vlan untagged packets), which is a bit contradicting with VLAN - seperate lan - always routing involved consept.
Furthermore each flood for learning two hosts triggered by ONOS will send packets to each port of the switch and there will be a lot of dropped packets to non same VLAN ports. (not sure if this happens to traditional switches too, or the floods are only per vlan specific without drops to other ports invlolved)
Thanks a lot and sorry for my persistance, just trying to understand if it's practical to implement more than one vlan with ONOS for production level environment.