cancel
Showing results for 
Search instead for 
Did you mean: 

can not connect ICX 7250-24 with Opendaylight oxygen controller

nadir_shah
New Contributor II
Hello Everyone,
I have ICX 7250-24 switch and ODL oxygen version. I have connected the ethernet interface 1/1/1 to the  ODL controller. the controlling is running on ip address 192.168.2.25 port 8181. I have enabled the openflow ofv130 and have connected with controller using no ssl in Config mod. Then I enabled openflow layer23 on ethernet interface 1/1/1 with VLAN1  However, the switch is not getting connected with the controller. When I disabled openflow and assigned ip address to 1/1/1 ethernet interface, then the controller is pinged. However, it is necessary that the ip address should not be assigned to ethernet interface 1/1/1 if we want to enable the openflow. When the ip address is not assigned to the ethernet interface 1/1/1, then the switch cannot ping the controller. Can you help me in this regard?
thanks!
Nadir


10 REPLIES 10

jijo_panangat
RUCKUS Team Member
Hi Nadir,

Make sure your Management interface is up and hope ICX and controller are on same subnet , if that is not the case route it thr default gateway with necessary routes added.


Thanks

vu_pham_ghtztqm
New Contributor III
Hi Nadir - Like Jijo said, please double check IP configuration on the ICX and the controller. If they're directly connected, make sure they're on the same vlan/subnet.  It would help you could 'cut and paste' the 'show run' and 'show openflow' outputs here.

Thanks,

Vu

nadir_shah
New Contributor II
Hello Vu,
thanks for your comment. Actually the problem is that the IP address cannot be configured on the interface that has openflow enabled on. Without configuring IP address on the interface, the router cannot be connected to  ODL
Thanks!
Nadir

vu_pham_ghtztqm
New Contributor III

Hi Nadir - I believe we need a dedicated 'Ethernet' port for ip management. In other words, port with openflow enable will not able to configured with an ip address to carry switch's management traffic. Below is a couple examples/scenarios how to set this up. If you still run into issues or have more questions, please open a support-case so one of us can help.  Thanks. Vu

******
******
Example 1:
ICX running Layer2 (switching code):
ODL server: 192.168.2.25/24
ODL server directly connected to ICX port 1/1/1

On ICX:
config t
int e 1/1/1
no openflow enable
exit
ip address 192.168.2.26/24
ip default-gateway 192.168.1.1 (optional if need to route management traffic elsewhere. ICX would need a router 192.168.1.1)
exit

write mem

//you should be able to ping ODL now!


******
******
Example 2: ICX running Layer3 (routing code):
ODL server: 192.168.2.25/24
ODL server directly connected to ICX port 1/1/1

On ICX:

config t
int e 1/1/1
no openflow enable
exit

vlan 10
untag e 1/1/1
router-interface ve 10
exit

interface ve 10
ip address 192.168.2.26/4
exit
write mem

//you should be able to ping ODL now!
******