-
Notifications
You must be signed in to change notification settings - Fork 0
/
err.log
1184 lines (1184 loc) · 157 KB
/
err.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Starting FlowVisor
Set default logging threshold to DEBUG
Setting debugging mode: all logs to stderr
--- Setting logging level to DEBUG
CRIT:2013-10-25T12:39:41.338:none:: log level enabled: CRIT
ALERT:2013-10-25T12:39:41.344:none:: log level enabled: ALERT
WARN:2013-10-25T12:39:41.345:none:: log level enabled: WARN
INFO:2013-10-25T12:39:41.345:none:: log level enabled: INFO
NOTE:2013-10-25T12:39:41.345:none:: log level enabled: NOTE
DEBUG:2013-10-25T12:39:41.345:none:: log level enabled: DEBUG
DEBUG:2013-10-25T12:39:41.345:none:: HALLO
INFO:2013-10-25T12:39:41.345:none:: initializing poll loop
INFO:2013-10-25T12:39:41.511:none:: initializing FlowVisor UserAPI JSONRPC SSL WebServer on port 8081
2013-10-25 12:39:41.687:INFO::Logging to StdErrLog::DEBUG=false via org.eclipse.jetty.util.log.StdErrLog
2013-10-25 12:39:41.758:INFO::jetty-7.0.2.v20100331
INFO:2013-10-25T12:39:41.830:OFSwitchAcceptor:: Listenning on port 6633
INFO:2013-10-25T12:39:42.152:none:: initializing FlowVisor UserAPI XMLRPC SSL WebServer on port 8080
DEBUG:2013-10-25T12:39:42.699:none:: SSL Supports 28 Ciphers::
DEBUG:2013-10-25T12:39:42.699:none:: TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256
DEBUG:2013-10-25T12:39:42.699:none:: TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
DEBUG:2013-10-25T12:39:42.699:none:: TLS_RSA_WITH_AES_128_CBC_SHA256
DEBUG:2013-10-25T12:39:42.700:none:: TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256
DEBUG:2013-10-25T12:39:42.700:none:: TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256
DEBUG:2013-10-25T12:39:42.700:none:: TLS_DHE_RSA_WITH_AES_128_CBC_SHA256
DEBUG:2013-10-25T12:39:42.700:none:: TLS_DHE_DSS_WITH_AES_128_CBC_SHA256
DEBUG:2013-10-25T12:39:42.700:none:: TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA
DEBUG:2013-10-25T12:39:42.700:none:: TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
DEBUG:2013-10-25T12:39:42.700:none:: TLS_RSA_WITH_AES_128_CBC_SHA
DEBUG:2013-10-25T12:39:42.701:none:: TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA
DEBUG:2013-10-25T12:39:42.701:none:: TLS_ECDH_RSA_WITH_AES_128_CBC_SHA
DEBUG:2013-10-25T12:39:42.701:none:: TLS_DHE_RSA_WITH_AES_128_CBC_SHA
DEBUG:2013-10-25T12:39:42.701:none:: TLS_DHE_DSS_WITH_AES_128_CBC_SHA
DEBUG:2013-10-25T12:39:42.705:none:: TLS_ECDHE_ECDSA_WITH_RC4_128_SHA
DEBUG:2013-10-25T12:39:42.705:none:: TLS_ECDHE_RSA_WITH_RC4_128_SHA
DEBUG:2013-10-25T12:39:42.706:none:: SSL_RSA_WITH_RC4_128_SHA
DEBUG:2013-10-25T12:39:42.706:none:: TLS_ECDH_ECDSA_WITH_RC4_128_SHA
DEBUG:2013-10-25T12:39:42.706:none:: TLS_ECDH_RSA_WITH_RC4_128_SHA
DEBUG:2013-10-25T12:39:42.706:none:: TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA
DEBUG:2013-10-25T12:39:42.706:none:: TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA
DEBUG:2013-10-25T12:39:42.706:none:: SSL_RSA_WITH_3DES_EDE_CBC_SHA
DEBUG:2013-10-25T12:39:42.707:none:: TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA
DEBUG:2013-10-25T12:39:42.707:none:: TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA
DEBUG:2013-10-25T12:39:42.707:none:: SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA
DEBUG:2013-10-25T12:39:42.707:none:: SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA
DEBUG:2013-10-25T12:39:42.707:none:: SSL_RSA_WITH_RC4_128_MD5
DEBUG:2013-10-25T12:39:42.707:none:: TLS_EMPTY_RENEGOTIATION_INFO_SCSV
2013-10-25 12:39:42.754:INFO::Started SslSelectChannelConnector@0.0.0.0:8081
INFO:2013-10-25T12:39:42.763:none:: flowdb: Disabled
INFO:2013-10-25T12:39:42.771:OFSwitchAcceptor:: got new connection: java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58981]
DEBUG:2013-10-25T12:39:42.926:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58981]:: send to switch:ofmsg:v=1;t=HELLO;l=8;x=0
DEBUG:2013-10-25T12:39:42.933:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58981]:: send to switch:OFFlowMod [actionFactory=null, actions=null, bufferId=4294967295, command=3, cookie=0, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1, xid=0]
DEBUG:2013-10-25T12:39:42.933:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58981]:: send to switch:ofmsg:v=1;t=FEATURES_REQUEST;l=8;x=0
DEBUG:2013-10-25T12:39:42.989:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58981]:: giving flood perms to slice: fvadmin
ALERT:2013-10-25T12:39:42.993:OFSwitchAcceptor:: STARVING: handling event took 230ms: org.flowvisor.events.FVIOEvent@112a01f
INFO:2013-10-25T12:39:42.999:classifier-dpid=00:00:00:00:00:00:00:04:: identified switch as dpid=00:00:00:00:00:00:00:04 on java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58981]
DEBUG:2013-10-25T12:39:43.341:none:: prioSet:{1={1}}
DEBUG:2013-10-25T12:39:43.341:none:: prioSet: {1={1}}
DEBUG:2013-10-25T12:39:43.341:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:43.342:none:: prioSet:{1={1, 2}}
DEBUG:2013-10-25T12:39:43.343:none:: prioSet: {1={1, 2}}
DEBUG:2013-10-25T12:39:43.343:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:43.344:none:: prioSet:{1={1, 2, 3}}
DEBUG:2013-10-25T12:39:43.344:none:: prioSet: {1={1, 2, 3}}
DEBUG:2013-10-25T12:39:43.344:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:43.345:none:: prioSet:{1={1, 2, 3, 4}}
DEBUG:2013-10-25T12:39:43.345:none:: prioSet: {1={1, 2, 3, 4}}
DEBUG:2013-10-25T12:39:43.345:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:43.346:none:: prioSet:{1={1, 2, 3, 4, 5}}
DEBUG:2013-10-25T12:39:43.347:none:: prioSet: {1={1, 2, 3, 4, 5}}
DEBUG:2013-10-25T12:39:43.347:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:43.348:none:: prioSet:{1={1, 2, 3, 4, 5, 6}}
DEBUG:2013-10-25T12:39:43.348:none:: prioSet: {1={1, 2, 3, 4, 5, 6}}
DEBUG:2013-10-25T12:39:43.348:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:43.350:none:: prioSet:{1={1, 2, 3, 4, 5, 6, 7}}
DEBUG:2013-10-25T12:39:43.350:none:: prioSet: {1={1, 2, 3, 4, 5, 6, 7}}
DEBUG:2013-10-25T12:39:43.350:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:43.352:none:: prioSet:{1={1, 2, 3, 4, 5, 6, 7, 8}}
DEBUG:2013-10-25T12:39:43.352:none:: prioSet: {1={1, 2, 3, 4, 5, 6, 7, 8}}
DEBUG:2013-10-25T12:39:43.352:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:43.353:none:: prioSet:{1={1, 2, 3, 4, 5, 6, 7, 8, 9}}
DEBUG:2013-10-25T12:39:43.353:none:: prioSet: {1={1, 2, 3, 4, 5, 6, 7, 8, 9}}
DEBUG:2013-10-25T12:39:43.353:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:43.354:none:: prioSet:{1={1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}
DEBUG:2013-10-25T12:39:43.354:none:: prioSet: {1={1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}
DEBUG:2013-10-25T12:39:43.354:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:43.355:none:: dpid: 4match: OFMatch[]
DEBUG:2013-10-25T12:39:43.355:none:: allRules: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
DEBUG:2013-10-25T12:39:43.358:classifier-dpid=00:00:00:00:00:00:00:04:: slices with access=upper,lower
INFO:2013-10-25T12:39:43.358:classifier-dpid=00:00:00:00:00:00:00:04:: making new connection to slice upper
DEBUG:2013-10-25T12:39:43.395:slicer_upper_dpid=00:00:00:00:00:00:00:04:: initializing new FVSlicer
DEBUG:2013-10-25T12:39:43.435:none:: dpid: 4match: OFMatch[]
DEBUG:2013-10-25T12:39:43.435:none:: allRules: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
DEBUG:2013-10-25T12:39:43.435:slicer_upper_dpid=00:00:00:00:00:00:00:04:: adding access to port 1
DEBUG:2013-10-25T12:39:43.436:slicer_upper_dpid=00:00:00:00:00:00:00:04:: adding access to port 3
INFO:2013-10-25T12:39:43.436:slicer_upper_dpid=00:00:00:00:00:00:00:04:: added port 1
WARN:2013-10-25T12:39:43.436:slicer_upper_dpid=00:00:00:00:00:00:00:04:: dropping msg: controller not connected: ofmsg:v=1;t=PORT_STATUS;l=64;x=0
INFO:2013-10-25T12:39:43.437:slicer_upper_dpid=00:00:00:00:00:00:00:04:: added port 3
WARN:2013-10-25T12:39:43.437:slicer_upper_dpid=00:00:00:00:00:00:00:04:: dropping msg: controller not connected: ofmsg:v=1;t=PORT_STATUS;l=64;x=0
INFO:2013-10-25T12:39:43.437:slicer_upper_dpid=00:00:00:00:00:00:00:04:: trying to reconnect to localhost:10001
INFO:2013-10-25T12:39:43.598:classifier-dpid=00:00:00:00:00:00:00:04:: making new connection to slice lower
DEBUG:2013-10-25T12:39:43.601:slicer_lower_dpid=00:00:00:00:00:00:00:04:: initializing new FVSlicer
DEBUG:2013-10-25T12:39:43.605:none:: dpid: 4match: OFMatch[]
DEBUG:2013-10-25T12:39:43.606:none:: allRules: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
DEBUG:2013-10-25T12:39:43.606:slicer_lower_dpid=00:00:00:00:00:00:00:04:: adding access to port 2
DEBUG:2013-10-25T12:39:43.606:slicer_lower_dpid=00:00:00:00:00:00:00:04:: adding access to port 4
INFO:2013-10-25T12:39:43.606:slicer_lower_dpid=00:00:00:00:00:00:00:04:: added port 2
WARN:2013-10-25T12:39:43.606:slicer_lower_dpid=00:00:00:00:00:00:00:04:: dropping msg: controller not connected: ofmsg:v=1;t=PORT_STATUS;l=64;x=0
INFO:2013-10-25T12:39:43.606:slicer_lower_dpid=00:00:00:00:00:00:00:04:: added port 4
WARN:2013-10-25T12:39:43.606:slicer_lower_dpid=00:00:00:00:00:00:00:04:: dropping msg: controller not connected: ofmsg:v=1;t=PORT_STATUS;l=64;x=0
INFO:2013-10-25T12:39:43.606:slicer_lower_dpid=00:00:00:00:00:00:00:04:: trying to reconnect to localhost:10002
DEBUG:2013-10-25T12:39:43.659:classifier-dpid=00:00:00:00:00:00:00:04:: giving flood perms to slice: fvadmin
ALERT:2013-10-25T12:39:43.659:classifier-dpid=00:00:00:00:00:00:00:04:: STARVING: handling event took 666ms: org.flowvisor.events.FVIOEvent@10f726a
INFO:2013-10-25T12:39:43.660:OFSwitchAcceptor:: got new connection: java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58982]
DEBUG:2013-10-25T12:39:43.665:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58982]:: send to switch:ofmsg:v=1;t=HELLO;l=8;x=0
DEBUG:2013-10-25T12:39:43.666:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58982]:: send to switch:OFFlowMod [actionFactory=null, actions=null, bufferId=4294967295, command=3, cookie=0, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1, xid=0]
DEBUG:2013-10-25T12:39:43.666:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58982]:: send to switch:ofmsg:v=1;t=FEATURES_REQUEST;l=8;x=0
DEBUG:2013-10-25T12:39:43.675:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58982]:: giving flood perms to slice: fvadmin
ALERT:2013-10-25T12:39:43.676:OFSwitchAcceptor:: STARVING: handling event took 17ms: org.flowvisor.events.FVIOEvent@fab0dd
DEBUG:2013-10-25T12:39:43.676:slicer_upper_dpid=00:00:00:00:00:00:00:04:: connected
DEBUG:2013-10-25T12:39:43.676:slicer_upper_dpid=00:00:00:00:00:00:00:04:: FVSlicer StatusInfo: {floodperms=false, slice-name=upper, controller-port=10001, shutdown-status=false, controller-host=localhost, connection-status=true}
DEBUG:2013-10-25T12:39:43.677:slicer_upper_dpid=00:00:00:00:00:00:00:04:: send to controller: ofmsg:v=1;t=HELLO;l=8;x=0
DEBUG:2013-10-25T12:39:43.678:slicer_upper_dpid=00:00:00:00:00:00:00:04:: recv from controller: ofmsg:v=1;t=HELLO;l=8;x=0
DEBUG:2013-10-25T12:39:43.678:slicer_upper_dpid=00:00:00:00:00:00:00:04:: recv from controller: FVFeaturesRequest []
DEBUG:2013-10-25T12:39:43.679:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:43.680:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:FVFeaturesRequest []
DEBUG:2013-10-25T12:39:43.680:slicer_lower_dpid=00:00:00:00:00:00:00:04:: connected
DEBUG:2013-10-25T12:39:43.680:slicer_lower_dpid=00:00:00:00:00:00:00:04:: FVSlicer StatusInfo: {floodperms=false, slice-name=lower, controller-port=10002, shutdown-status=false, controller-host=localhost, connection-status=true}
DEBUG:2013-10-25T12:39:43.680:slicer_lower_dpid=00:00:00:00:00:00:00:04:: send to controller: ofmsg:v=1;t=HELLO;l=8;x=0
INFO:2013-10-25T12:39:43.680:OFSwitchAcceptor:: got new connection: java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58983]
DEBUG:2013-10-25T12:39:43.687:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58983]:: send to switch:ofmsg:v=1;t=HELLO;l=8;x=0
DEBUG:2013-10-25T12:39:43.687:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58983]:: send to switch:OFFlowMod [actionFactory=null, actions=null, bufferId=4294967295, command=3, cookie=0, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1, xid=0]
DEBUG:2013-10-25T12:39:43.687:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58983]:: send to switch:ofmsg:v=1;t=FEATURES_REQUEST;l=8;x=0
DEBUG:2013-10-25T12:39:43.693:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58983]:: giving flood perms to slice: fvadmin
ALERT:2013-10-25T12:39:43.693:OFSwitchAcceptor:: STARVING: handling event took 13ms: org.flowvisor.events.FVIOEvent@17375ad
INFO:2013-10-25T12:39:43.699:OFSwitchAcceptor:: got new connection: java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58984]
DEBUG:2013-10-25T12:39:43.703:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58984]:: send to switch:ofmsg:v=1;t=HELLO;l=8;x=0
DEBUG:2013-10-25T12:39:43.703:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58984]:: send to switch:OFFlowMod [actionFactory=null, actions=null, bufferId=4294967295, command=3, cookie=0, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1, xid=0]
DEBUG:2013-10-25T12:39:43.703:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58984]:: send to switch:ofmsg:v=1;t=FEATURES_REQUEST;l=8;x=0
DEBUG:2013-10-25T12:39:43.706:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58984]:: giving flood perms to slice: fvadmin
INFO:2013-10-25T12:39:43.708:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58982]:: got IO exception; closing because : java.io.IOException: got EOF from other side
WARN:2013-10-25T12:39:43.708:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58982]:: tearing down
INFO:2013-10-25T12:39:43.713:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58983]:: got IO exception; closing because : java.io.IOException: got EOF from other side
WARN:2013-10-25T12:39:43.714:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58983]:: tearing down
DEBUG:2013-10-25T12:39:43.714:classifier-dpid=00:00:00:00:00:00:00:04:: received from switch: FVFeaturesReply [ dpid=00:00:00:00:00:00:00:04,ports=5]
DEBUG:2013-10-25T12:39:43.715:slicer_upper_dpid=00:00:00:00:00:00:00:04:: send to controller: FVFeaturesReply [ dpid=00:00:00:00:00:00:00:04,ports=2]
DEBUG:2013-10-25T12:39:43.715:slicer_lower_dpid=00:00:00:00:00:00:00:04:: recv from controller: ofmsg:v=1;t=HELLO;l=8;x=0
DEBUG:2013-10-25T12:39:43.716:slicer_lower_dpid=00:00:00:00:00:00:00:04:: recv from controller: FVFeaturesRequest []
DEBUG:2013-10-25T12:39:43.716:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:43.716:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:FVFeaturesRequest []
INFO:2013-10-25T12:39:43.722:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58984]:: got IO exception; closing because : java.io.IOException: got EOF from other side
WARN:2013-10-25T12:39:43.728:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58984]:: tearing down
DEBUG:2013-10-25T12:39:43.730:classifier-dpid=00:00:00:00:00:00:00:04:: received from switch: FVFeaturesReply [ dpid=00:00:00:00:00:00:00:04,ports=5]
DEBUG:2013-10-25T12:39:43.730:slicer_lower_dpid=00:00:00:00:00:00:00:04:: send to controller: FVFeaturesReply [ dpid=00:00:00:00:00:00:00:04,ports=2]
DEBUG:2013-10-25T12:39:43.765:slicer_upper_dpid=00:00:00:00:00:00:00:04:: recv from controller: ofmsg:v=1;t=STATS_REQUEST;l=12;x=0;st=DESC
DEBUG:2013-10-25T12:39:43.765:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:43.765:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:ofmsg:v=1;t=STATS_REQUEST;l=12;x=258;st=DESC
ALERT:2013-10-25T12:39:43.766:slicer_upper_dpid=00:00:00:00:00:00:00:04:: STARVING: handling event took 22ms: org.flowvisor.events.FVIOEvent@1b22823
DEBUG:2013-10-25T12:39:43.772:slicer_lower_dpid=00:00:00:00:00:00:00:04:: recv from controller: ofmsg:v=1;t=STATS_REQUEST;l=12;x=0;st=DESC
DEBUG:2013-10-25T12:39:43.772:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:43.772:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:ofmsg:v=1;t=STATS_REQUEST;l=12;x=259;st=DESC
DEBUG:2013-10-25T12:39:43.774:classifier-dpid=00:00:00:00:00:00:00:04:: received from switch: ofmsg:v=1;t=STATS_REPLY;l=1068;x=258;st=DESC
DEBUG:2013-10-25T12:39:43.776:slicer_upper_dpid=00:00:00:00:00:00:00:04:: sending to controller: ofmsg:v=1;t=STATS_REPLY;l=1068;x=0;st=DESC
DEBUG:2013-10-25T12:39:43.776:slicer_upper_dpid=00:00:00:00:00:00:00:04:: send to controller: ofmsg:v=1;t=STATS_REPLY;l=1068;x=0;st=DESC
DEBUG:2013-10-25T12:39:43.779:slicer_upper_dpid=00:00:00:00:00:00:00:04:: recv from controller: ofmsg:v=1;t=SET_CONFIG;l=12;x=0
DEBUG:2013-10-25T12:39:43.779:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:43.779:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:ofmsg:v=1;t=SET_CONFIG;l=12;x=260
DEBUG:2013-10-25T12:39:43.779:slicer_upper_dpid=00:00:00:00:00:00:00:04:: recv from controller: FVBarrierRequest []
DEBUG:2013-10-25T12:39:43.779:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:43.780:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:FVBarrierRequest []
DEBUG:2013-10-25T12:39:43.780:slicer_upper_dpid=00:00:00:00:00:00:00:04:: recv from controller: ofmsg:v=1;t=GET_CONFIG_REQUEST;l=8;x=0
DEBUG:2013-10-25T12:39:43.780:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:43.780:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:ofmsg:v=1;t=GET_CONFIG_REQUEST;l=8;x=262
DEBUG:2013-10-25T12:39:43.780:classifier-dpid=00:00:00:00:00:00:00:04:: received from switch: ofmsg:v=1;t=STATS_REPLY;l=1068;x=259;st=DESC
DEBUG:2013-10-25T12:39:43.780:slicer_lower_dpid=00:00:00:00:00:00:00:04:: sending to controller: ofmsg:v=1;t=STATS_REPLY;l=1068;x=0;st=DESC
DEBUG:2013-10-25T12:39:43.780:slicer_lower_dpid=00:00:00:00:00:00:00:04:: send to controller: ofmsg:v=1;t=STATS_REPLY;l=1068;x=0;st=DESC
DEBUG:2013-10-25T12:39:43.786:slicer_lower_dpid=00:00:00:00:00:00:00:04:: recv from controller: ofmsg:v=1;t=SET_CONFIG;l=12;x=0
DEBUG:2013-10-25T12:39:43.786:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:43.786:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:ofmsg:v=1;t=SET_CONFIG;l=12;x=263
DEBUG:2013-10-25T12:39:43.786:slicer_lower_dpid=00:00:00:00:00:00:00:04:: recv from controller: FVBarrierRequest []
DEBUG:2013-10-25T12:39:43.786:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:43.786:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:FVBarrierRequest []
DEBUG:2013-10-25T12:39:43.787:slicer_lower_dpid=00:00:00:00:00:00:00:04:: recv from controller: ofmsg:v=1;t=GET_CONFIG_REQUEST;l=8;x=0
DEBUG:2013-10-25T12:39:43.787:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:43.787:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:ofmsg:v=1;t=GET_CONFIG_REQUEST;l=8;x=265
DEBUG:2013-10-25T12:39:43.787:classifier-dpid=00:00:00:00:00:00:00:04:: received from switch: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=261
DEBUG:2013-10-25T12:39:43.787:slicer_upper_dpid=00:00:00:00:00:00:00:04:: sending to controller: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=0
DEBUG:2013-10-25T12:39:43.787:slicer_upper_dpid=00:00:00:00:00:00:00:04:: send to controller: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=0
DEBUG:2013-10-25T12:39:43.788:classifier-dpid=00:00:00:00:00:00:00:04:: received from switch: ofmsg:v=1;t=GET_CONFIG_REPLY;l=12;x=262
DEBUG:2013-10-25T12:39:43.788:slicer_upper_dpid=00:00:00:00:00:00:00:04:: send to controller: ofmsg:v=1;t=GET_CONFIG_REPLY;l=12;x=0
DEBUG:2013-10-25T12:39:43.798:classifier-dpid=00:00:00:00:00:00:00:04:: received from switch: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=264
DEBUG:2013-10-25T12:39:43.798:slicer_lower_dpid=00:00:00:00:00:00:00:04:: sending to controller: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=0
DEBUG:2013-10-25T12:39:43.798:slicer_lower_dpid=00:00:00:00:00:00:00:04:: send to controller: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=0
DEBUG:2013-10-25T12:39:43.798:classifier-dpid=00:00:00:00:00:00:00:04:: received from switch: ofmsg:v=1;t=GET_CONFIG_REPLY;l=12;x=265
DEBUG:2013-10-25T12:39:43.798:slicer_lower_dpid=00:00:00:00:00:00:00:04:: send to controller: ofmsg:v=1;t=GET_CONFIG_REPLY;l=12;x=0
DEBUG:2013-10-25T12:39:43.804:slicer_upper_dpid=00:00:00:00:00:00:00:04:: recv from controller: FVFlowMod [ actions=DROP, command=3, cookie=0, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:43.805:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:43.805:slicer_upper_dpid=00:00:00:00:00:00:00:04:: recv from controller: FVFlowMod [ actions=DROP, command=3, cookie=0, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:43.805:none:: translateCookie newCookie:256
DEBUG:2013-10-25T12:39:43.806:none:: dpid: 4 match: OFMatch[]
DEBUG:2013-10-25T12:39:43.806:none:: OFMatch[]
DEBUG:2013-10-25T12:39:43.812:none:: Rule ids which intersect: {4, 5, 9, 10}
DEBUG:2013-10-25T12:39:43.813:none:: Rule ids which intersect: {4, 5, 9, 10}
DEBUG:2013-10-25T12:39:43.813:none:: Rule ids which intersect: {4, 5, 9, 10}
DEBUG:2013-10-25T12:39:43.813:none:: Rule ids which intersect: {4, 5, 9, 10}
DEBUG:2013-10-25T12:39:43.813:none:: Rule ids which intersect: {4, 5, 9, 10}
DEBUG:2013-10-25T12:39:43.814:none:: Rule ids which intersect: {4, 5, 9, 10}
DEBUG:2013-10-25T12:39:43.814:none:: Rule ids which intersect: {4, 5, 9, 10}
DEBUG:2013-10-25T12:39:43.814:none:: Rule ids which intersect: {4, 5, 9, 10}
DEBUG:2013-10-25T12:39:43.814:none:: Rule ids which intersect: {4, 5, 9, 10}
DEBUG:2013-10-25T12:39:43.814:none:: Rule ids which intersect: {4, 5, 9, 10}
DEBUG:2013-10-25T12:39:43.822:none:: Intersections: {4=FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:04],ruleMatch=[OFMatch[in_port=1]],actionsList=[Slice:upper=7],id=[4],priority=[1],]], 5=FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:04],ruleMatch=[OFMatch[in_port=3]],actionsList=[Slice:upper=7],id=[5],priority=[1],]], 9=FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:04],ruleMatch=[OFMatch[in_port=2]],actionsList=[Slice:lower=7],id=[9],priority=[1],]], 10=FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:04],ruleMatch=[OFMatch[in_port=4]],actionsList=[Slice:lower=7],id=[10],priority=[1],]]}
DEBUG:2013-10-25T12:39:43.823:none:: intersect: FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:04],ruleMatch=[OFMatch[in_port=1]],actionsList=[Slice:upper=7],id=[4],priority=[1],]]
DEBUG:2013-10-25T12:39:43.823:none:: prioSet: {1={1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}
DEBUG:2013-10-25T12:39:43.823:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:43.823:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:FVFlowMod [ actions=DROP, command=3, cookie=256, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[in_port=1], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:43.823:none:: intersect: FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:04],ruleMatch=[OFMatch[in_port=3]],actionsList=[Slice:upper=7],id=[5],priority=[1],]]
DEBUG:2013-10-25T12:39:43.823:none:: prioSet: {1={1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}
DEBUG:2013-10-25T12:39:43.825:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:43.825:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:FVFlowMod [ actions=DROP, command=3, cookie=256, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[in_port=3], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:43.826:none:: intersect: FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:04],ruleMatch=[OFMatch[in_port=2]],actionsList=[Slice:lower=7],id=[9],priority=[1],]]
DEBUG:2013-10-25T12:39:43.826:none:: intersect: FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:04],ruleMatch=[OFMatch[in_port=4]],actionsList=[Slice:lower=7],id=[10],priority=[1],]]
DEBUG:2013-10-25T12:39:43.826:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:FVFlowMod [ actions=DROP, command=3, cookie=256, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[in_port=3], outPort=-3, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:43.826:slicer_upper_dpid=00:00:00:00:00:00:00:04:: expanded fm 3 times: FVFlowMod [ actions=DROP, command=3, cookie=256, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:43.826:slicer_upper_dpid=00:00:00:00:00:00:00:04:: recv from controller: FVBarrierRequest []
DEBUG:2013-10-25T12:39:43.826:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:43.826:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:FVBarrierRequest []
ALERT:2013-10-25T12:39:43.827:slicer_upper_dpid=00:00:00:00:00:00:00:04:: STARVING: handling event took 24ms: org.flowvisor.events.FVIOEvent@2e101
DEBUG:2013-10-25T12:39:43.828:slicer_lower_dpid=00:00:00:00:00:00:00:04:: recv from controller: FVFlowMod [ actions=DROP, command=3, cookie=0, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:43.829:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:43.829:slicer_lower_dpid=00:00:00:00:00:00:00:04:: recv from controller: FVFlowMod [ actions=DROP, command=3, cookie=0, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:43.829:none:: translateCookie newCookie:257
DEBUG:2013-10-25T12:39:43.829:none:: dpid: 4 match: OFMatch[]
DEBUG:2013-10-25T12:39:43.829:none:: OFMatch[]
DEBUG:2013-10-25T12:39:43.829:none:: Rule ids which intersect: {4, 5, 9, 10}
DEBUG:2013-10-25T12:39:43.829:none:: Rule ids which intersect: {4, 5, 9, 10}
DEBUG:2013-10-25T12:39:43.830:none:: Rule ids which intersect: {4, 5, 9, 10}
DEBUG:2013-10-25T12:39:43.830:none:: Rule ids which intersect: {4, 5, 9, 10}
DEBUG:2013-10-25T12:39:43.830:none:: Rule ids which intersect: {4, 5, 9, 10}
DEBUG:2013-10-25T12:39:43.830:none:: Rule ids which intersect: {4, 5, 9, 10}
DEBUG:2013-10-25T12:39:43.830:none:: Rule ids which intersect: {4, 5, 9, 10}
DEBUG:2013-10-25T12:39:43.835:none:: Rule ids which intersect: {4, 5, 9, 10}
DEBUG:2013-10-25T12:39:43.835:none:: Rule ids which intersect: {4, 5, 9, 10}
DEBUG:2013-10-25T12:39:43.835:none:: Rule ids which intersect: {4, 5, 9, 10}
DEBUG:2013-10-25T12:39:43.835:none:: Intersections: {4=FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:04],ruleMatch=[OFMatch[in_port=1]],actionsList=[Slice:upper=7],id=[4],priority=[1],]], 5=FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:04],ruleMatch=[OFMatch[in_port=3]],actionsList=[Slice:upper=7],id=[5],priority=[1],]], 9=FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:04],ruleMatch=[OFMatch[in_port=2]],actionsList=[Slice:lower=7],id=[9],priority=[1],]], 10=FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:04],ruleMatch=[OFMatch[in_port=4]],actionsList=[Slice:lower=7],id=[10],priority=[1],]]}
DEBUG:2013-10-25T12:39:43.835:none:: intersect: FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:04],ruleMatch=[OFMatch[in_port=1]],actionsList=[Slice:upper=7],id=[4],priority=[1],]]
DEBUG:2013-10-25T12:39:43.840:none:: intersect: FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:04],ruleMatch=[OFMatch[in_port=3]],actionsList=[Slice:upper=7],id=[5],priority=[1],]]
DEBUG:2013-10-25T12:39:43.840:none:: intersect: FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:04],ruleMatch=[OFMatch[in_port=2]],actionsList=[Slice:lower=7],id=[9],priority=[1],]]
DEBUG:2013-10-25T12:39:43.840:none:: prioSet: {1={1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}
DEBUG:2013-10-25T12:39:43.840:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:43.841:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:FVFlowMod [ actions=DROP, command=3, cookie=257, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[in_port=2], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:43.841:none:: intersect: FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:04],ruleMatch=[OFMatch[in_port=4]],actionsList=[Slice:lower=7],id=[10],priority=[1],]]
DEBUG:2013-10-25T12:39:43.841:none:: prioSet: {1={1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}
DEBUG:2013-10-25T12:39:43.841:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:43.841:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:FVFlowMod [ actions=DROP, command=3, cookie=257, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[in_port=4], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:43.841:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:FVFlowMod [ actions=DROP, command=3, cookie=257, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[in_port=4], outPort=-3, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:43.842:slicer_lower_dpid=00:00:00:00:00:00:00:04:: expanded fm 3 times: FVFlowMod [ actions=DROP, command=3, cookie=257, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:43.842:slicer_lower_dpid=00:00:00:00:00:00:00:04:: recv from controller: FVBarrierRequest []
DEBUG:2013-10-25T12:39:43.842:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:43.842:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:FVBarrierRequest []
ALERT:2013-10-25T12:39:43.842:slicer_lower_dpid=00:00:00:00:00:00:00:04:: STARVING: handling event took 14ms: org.flowvisor.events.FVIOEvent@10208a8
DEBUG:2013-10-25T12:39:43.842:classifier-dpid=00:00:00:00:00:00:00:04:: received from switch: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=267
DEBUG:2013-10-25T12:39:43.842:slicer_upper_dpid=00:00:00:00:00:00:00:04:: sending to controller: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=0
DEBUG:2013-10-25T12:39:43.843:slicer_upper_dpid=00:00:00:00:00:00:00:04:: send to controller: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=0
DEBUG:2013-10-25T12:39:43.850:classifier-dpid=00:00:00:00:00:00:00:04:: received from switch: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=269
DEBUG:2013-10-25T12:39:43.851:slicer_lower_dpid=00:00:00:00:00:00:00:04:: sending to controller: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=0
DEBUG:2013-10-25T12:39:43.851:slicer_lower_dpid=00:00:00:00:00:00:00:04:: send to controller: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=0
INFO:2013-10-25T12:39:44.337:OFSwitchAcceptor:: got new connection: java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58987]
DEBUG:2013-10-25T12:39:44.342:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58987]:: send to switch:ofmsg:v=1;t=HELLO;l=8;x=0
DEBUG:2013-10-25T12:39:44.342:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58987]:: send to switch:OFFlowMod [actionFactory=null, actions=null, bufferId=4294967295, command=3, cookie=0, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1, xid=0]
DEBUG:2013-10-25T12:39:44.342:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58987]:: send to switch:ofmsg:v=1;t=FEATURES_REQUEST;l=8;x=0
DEBUG:2013-10-25T12:39:44.354:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58987]:: giving flood perms to slice: fvadmin
ALERT:2013-10-25T12:39:44.354:OFSwitchAcceptor:: STARVING: handling event took 17ms: org.flowvisor.events.FVIOEvent@1f224ab
INFO:2013-10-25T12:39:44.357:classifier-dpid=00:00:00:00:00:00:00:02:: identified switch as dpid=00:00:00:00:00:00:00:02 on java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58987]
DEBUG:2013-10-25T12:39:44.361:none:: prioSet:{1={1}}
DEBUG:2013-10-25T12:39:44.361:none:: prioSet: {1={1}}
DEBUG:2013-10-25T12:39:44.361:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.362:none:: prioSet:{1={1, 2}}
DEBUG:2013-10-25T12:39:44.362:none:: prioSet: {1={1, 2}}
DEBUG:2013-10-25T12:39:44.362:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.363:none:: prioSet:{1={1, 2, 3}}
DEBUG:2013-10-25T12:39:44.364:none:: prioSet: {1={1, 2, 3}}
DEBUG:2013-10-25T12:39:44.364:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.365:none:: prioSet:{1={1, 2, 3, 4}}
DEBUG:2013-10-25T12:39:44.365:none:: prioSet: {1={1, 2, 3, 4}}
DEBUG:2013-10-25T12:39:44.365:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.366:none:: prioSet:{1={1, 2, 3, 4, 5}}
DEBUG:2013-10-25T12:39:44.366:none:: prioSet: {1={1, 2, 3, 4, 5}}
DEBUG:2013-10-25T12:39:44.366:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.371:none:: prioSet:{1={1, 2, 3, 4, 5, 6}}
DEBUG:2013-10-25T12:39:44.371:none:: prioSet: {1={1, 2, 3, 4, 5, 6}}
DEBUG:2013-10-25T12:39:44.371:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.372:none:: prioSet:{1={1, 2, 3, 4, 5, 6, 7}}
DEBUG:2013-10-25T12:39:44.372:none:: prioSet: {1={1, 2, 3, 4, 5, 6, 7}}
DEBUG:2013-10-25T12:39:44.372:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.374:none:: prioSet:{1={1, 2, 3, 4, 5, 6, 7, 8}}
DEBUG:2013-10-25T12:39:44.374:none:: prioSet: {1={1, 2, 3, 4, 5, 6, 7, 8}}
DEBUG:2013-10-25T12:39:44.374:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.378:none:: prioSet:{1={1, 2, 3, 4, 5, 6, 7, 8, 9}}
DEBUG:2013-10-25T12:39:44.378:none:: prioSet: {1={1, 2, 3, 4, 5, 6, 7, 8, 9}}
DEBUG:2013-10-25T12:39:44.378:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.380:none:: prioSet:{1={1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}
DEBUG:2013-10-25T12:39:44.380:none:: prioSet: {1={1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}
DEBUG:2013-10-25T12:39:44.380:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.381:none:: dpid: 2match: OFMatch[]
DEBUG:2013-10-25T12:39:44.381:none:: allRules: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
DEBUG:2013-10-25T12:39:44.382:classifier-dpid=00:00:00:00:00:00:00:02:: slices with access=upper
INFO:2013-10-25T12:39:44.382:classifier-dpid=00:00:00:00:00:00:00:02:: making new connection to slice upper
DEBUG:2013-10-25T12:39:44.385:slicer_upper_dpid=00:00:00:00:00:00:00:02:: initializing new FVSlicer
DEBUG:2013-10-25T12:39:44.396:none:: dpid: 2match: OFMatch[]
DEBUG:2013-10-25T12:39:44.396:none:: allRules: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
DEBUG:2013-10-25T12:39:44.397:slicer_upper_dpid=00:00:00:00:00:00:00:02:: adding access to port 1
DEBUG:2013-10-25T12:39:44.397:slicer_upper_dpid=00:00:00:00:00:00:00:02:: adding access to port 2
DEBUG:2013-10-25T12:39:44.397:slicer_upper_dpid=00:00:00:00:00:00:00:02:: adding access to port -2
INFO:2013-10-25T12:39:44.397:slicer_upper_dpid=00:00:00:00:00:00:00:02:: added port 1
WARN:2013-10-25T12:39:44.397:slicer_upper_dpid=00:00:00:00:00:00:00:02:: dropping msg: controller not connected: ofmsg:v=1;t=PORT_STATUS;l=64;x=0
INFO:2013-10-25T12:39:44.397:slicer_upper_dpid=00:00:00:00:00:00:00:02:: added port 2
WARN:2013-10-25T12:39:44.397:slicer_upper_dpid=00:00:00:00:00:00:00:02:: dropping msg: controller not connected: ofmsg:v=1;t=PORT_STATUS;l=64;x=0
INFO:2013-10-25T12:39:44.398:slicer_upper_dpid=00:00:00:00:00:00:00:02:: added port -2
WARN:2013-10-25T12:39:44.398:slicer_upper_dpid=00:00:00:00:00:00:00:02:: dropping msg: controller not connected: ofmsg:v=1;t=PORT_STATUS;l=64;x=0
INFO:2013-10-25T12:39:44.398:slicer_upper_dpid=00:00:00:00:00:00:00:02:: trying to reconnect to localhost:10001
DEBUG:2013-10-25T12:39:44.426:classifier-dpid=00:00:00:00:00:00:00:02:: giving flood perms to slice: fvadmin
ALERT:2013-10-25T12:39:44.426:classifier-dpid=00:00:00:00:00:00:00:02:: STARVING: handling event took 71ms: org.flowvisor.events.FVIOEvent@1f05eee
INFO:2013-10-25T12:39:44.426:OFSwitchAcceptor:: got new connection: java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58988]
DEBUG:2013-10-25T12:39:44.431:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58988]:: send to switch:ofmsg:v=1;t=HELLO;l=8;x=0
DEBUG:2013-10-25T12:39:44.431:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58988]:: send to switch:OFFlowMod [actionFactory=null, actions=null, bufferId=4294967295, command=3, cookie=0, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1, xid=0]
DEBUG:2013-10-25T12:39:44.431:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58988]:: send to switch:ofmsg:v=1;t=FEATURES_REQUEST;l=8;x=0
DEBUG:2013-10-25T12:39:44.447:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58988]:: giving flood perms to slice: fvadmin
ALERT:2013-10-25T12:39:44.447:OFSwitchAcceptor:: STARVING: handling event took 21ms: org.flowvisor.events.FVIOEvent@198b5a7
INFO:2013-10-25T12:39:44.447:classifier-dpid=00:00:00:00:00:00:00:01:: identified switch as dpid=00:00:00:00:00:00:00:01 on java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58988]
DEBUG:2013-10-25T12:39:44.457:none:: prioSet:{1={1}}
DEBUG:2013-10-25T12:39:44.457:none:: prioSet: {1={1}}
DEBUG:2013-10-25T12:39:44.457:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.463:none:: prioSet:{1={1, 2}}
DEBUG:2013-10-25T12:39:44.463:none:: prioSet: {1={1, 2}}
DEBUG:2013-10-25T12:39:44.463:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.464:none:: prioSet:{1={1, 2, 3}}
DEBUG:2013-10-25T12:39:44.465:none:: prioSet: {1={1, 2, 3}}
DEBUG:2013-10-25T12:39:44.465:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.472:none:: prioSet:{1={1, 2, 3, 4}}
DEBUG:2013-10-25T12:39:44.472:none:: prioSet: {1={1, 2, 3, 4}}
DEBUG:2013-10-25T12:39:44.472:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.474:none:: prioSet:{1={1, 2, 3, 4, 5}}
DEBUG:2013-10-25T12:39:44.474:none:: prioSet: {1={1, 2, 3, 4, 5}}
DEBUG:2013-10-25T12:39:44.474:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.475:none:: prioSet:{1={1, 2, 3, 4, 5, 6}}
DEBUG:2013-10-25T12:39:44.475:none:: prioSet: {1={1, 2, 3, 4, 5, 6}}
DEBUG:2013-10-25T12:39:44.475:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.481:none:: prioSet:{1={1, 2, 3, 4, 5, 6, 7}}
DEBUG:2013-10-25T12:39:44.481:none:: prioSet: {1={1, 2, 3, 4, 5, 6, 7}}
DEBUG:2013-10-25T12:39:44.481:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.482:none:: prioSet:{1={1, 2, 3, 4, 5, 6, 7, 8}}
DEBUG:2013-10-25T12:39:44.483:none:: prioSet: {1={1, 2, 3, 4, 5, 6, 7, 8}}
DEBUG:2013-10-25T12:39:44.483:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.484:none:: prioSet:{1={1, 2, 3, 4, 5, 6, 7, 8, 9}}
DEBUG:2013-10-25T12:39:44.484:none:: prioSet: {1={1, 2, 3, 4, 5, 6, 7, 8, 9}}
DEBUG:2013-10-25T12:39:44.484:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.490:none:: prioSet:{1={1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}
DEBUG:2013-10-25T12:39:44.490:none:: prioSet: {1={1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}
DEBUG:2013-10-25T12:39:44.490:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.494:none:: dpid: 1match: OFMatch[]
DEBUG:2013-10-25T12:39:44.494:none:: allRules: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
DEBUG:2013-10-25T12:39:44.496:classifier-dpid=00:00:00:00:00:00:00:01:: slices with access=upper,lower
INFO:2013-10-25T12:39:44.496:classifier-dpid=00:00:00:00:00:00:00:01:: making new connection to slice upper
DEBUG:2013-10-25T12:39:44.504:slicer_upper_dpid=00:00:00:00:00:00:00:01:: initializing new FVSlicer
DEBUG:2013-10-25T12:39:44.513:none:: dpid: 1match: OFMatch[]
DEBUG:2013-10-25T12:39:44.513:none:: allRules: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
DEBUG:2013-10-25T12:39:44.513:slicer_upper_dpid=00:00:00:00:00:00:00:01:: adding access to port 1
DEBUG:2013-10-25T12:39:44.513:slicer_upper_dpid=00:00:00:00:00:00:00:01:: adding access to port 3
INFO:2013-10-25T12:39:44.514:slicer_upper_dpid=00:00:00:00:00:00:00:01:: added port 1
WARN:2013-10-25T12:39:44.514:slicer_upper_dpid=00:00:00:00:00:00:00:01:: dropping msg: controller not connected: ofmsg:v=1;t=PORT_STATUS;l=64;x=0
INFO:2013-10-25T12:39:44.514:slicer_upper_dpid=00:00:00:00:00:00:00:01:: added port 3
WARN:2013-10-25T12:39:44.514:slicer_upper_dpid=00:00:00:00:00:00:00:01:: dropping msg: controller not connected: ofmsg:v=1;t=PORT_STATUS;l=64;x=0
INFO:2013-10-25T12:39:44.514:slicer_upper_dpid=00:00:00:00:00:00:00:01:: trying to reconnect to localhost:10001
INFO:2013-10-25T12:39:44.549:classifier-dpid=00:00:00:00:00:00:00:01:: making new connection to slice lower
DEBUG:2013-10-25T12:39:44.559:slicer_lower_dpid=00:00:00:00:00:00:00:01:: initializing new FVSlicer
DEBUG:2013-10-25T12:39:44.578:none:: dpid: 1match: OFMatch[]
DEBUG:2013-10-25T12:39:44.578:none:: allRules: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
DEBUG:2013-10-25T12:39:44.578:slicer_lower_dpid=00:00:00:00:00:00:00:01:: adding access to port 2
DEBUG:2013-10-25T12:39:44.579:slicer_lower_dpid=00:00:00:00:00:00:00:01:: adding access to port 4
INFO:2013-10-25T12:39:44.579:slicer_lower_dpid=00:00:00:00:00:00:00:01:: added port 2
WARN:2013-10-25T12:39:44.579:slicer_lower_dpid=00:00:00:00:00:00:00:01:: dropping msg: controller not connected: ofmsg:v=1;t=PORT_STATUS;l=64;x=0
INFO:2013-10-25T12:39:44.579:slicer_lower_dpid=00:00:00:00:00:00:00:01:: added port 4
WARN:2013-10-25T12:39:44.584:slicer_lower_dpid=00:00:00:00:00:00:00:01:: dropping msg: controller not connected: ofmsg:v=1;t=PORT_STATUS;l=64;x=0
INFO:2013-10-25T12:39:44.584:slicer_lower_dpid=00:00:00:00:00:00:00:01:: trying to reconnect to localhost:10002
DEBUG:2013-10-25T12:39:44.604:classifier-dpid=00:00:00:00:00:00:00:01:: giving flood perms to slice: fvadmin
ALERT:2013-10-25T12:39:44.604:classifier-dpid=00:00:00:00:00:00:00:01:: STARVING: handling event took 157ms: org.flowvisor.events.FVIOEvent@6bc023
INFO:2013-10-25T12:39:44.604:OFSwitchAcceptor:: got new connection: java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58989]
DEBUG:2013-10-25T12:39:44.614:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58989]:: send to switch:ofmsg:v=1;t=HELLO;l=8;x=0
DEBUG:2013-10-25T12:39:44.614:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58989]:: send to switch:OFFlowMod [actionFactory=null, actions=null, bufferId=4294967295, command=3, cookie=0, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1, xid=0]
DEBUG:2013-10-25T12:39:44.614:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58989]:: send to switch:ofmsg:v=1;t=FEATURES_REQUEST;l=8;x=0
DEBUG:2013-10-25T12:39:44.617:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58989]:: giving flood perms to slice: fvadmin
ALERT:2013-10-25T12:39:44.617:OFSwitchAcceptor:: STARVING: handling event took 13ms: org.flowvisor.events.FVIOEvent@54a79a
DEBUG:2013-10-25T12:39:44.617:slicer_upper_dpid=00:00:00:00:00:00:00:02:: connected
DEBUG:2013-10-25T12:39:44.617:slicer_upper_dpid=00:00:00:00:00:00:00:02:: FVSlicer StatusInfo: {floodperms=false, slice-name=upper, controller-port=10001, shutdown-status=false, controller-host=localhost, connection-status=true}
DEBUG:2013-10-25T12:39:44.618:slicer_upper_dpid=00:00:00:00:00:00:00:02:: send to controller: ofmsg:v=1;t=HELLO;l=8;x=0
DEBUG:2013-10-25T12:39:44.621:slicer_upper_dpid=00:00:00:00:00:00:00:02:: recv from controller: ofmsg:v=1;t=HELLO;l=8;x=0
DEBUG:2013-10-25T12:39:44.624:slicer_upper_dpid=00:00:00:00:00:00:00:02:: recv from controller: FVFeaturesRequest []
DEBUG:2013-10-25T12:39:44.628:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.628:classifier-dpid=00:00:00:00:00:00:00:02:: send to switch:FVFeaturesRequest []
ALERT:2013-10-25T12:39:44.628:slicer_upper_dpid=00:00:00:00:00:00:00:02:: STARVING: handling event took 11ms: org.flowvisor.events.FVIOEvent@1c7a1e5
DEBUG:2013-10-25T12:39:44.628:slicer_lower_dpid=00:00:00:00:00:00:00:01:: connected
DEBUG:2013-10-25T12:39:44.628:slicer_lower_dpid=00:00:00:00:00:00:00:01:: FVSlicer StatusInfo: {floodperms=false, slice-name=lower, controller-port=10002, shutdown-status=false, controller-host=localhost, connection-status=true}
DEBUG:2013-10-25T12:39:44.629:slicer_lower_dpid=00:00:00:00:00:00:00:01:: send to controller: ofmsg:v=1;t=HELLO;l=8;x=0
INFO:2013-10-25T12:39:44.634:classifier-dpid=00:00:00:00:00:00:00:03:: identified switch as dpid=00:00:00:00:00:00:00:03 on java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58989]
DEBUG:2013-10-25T12:39:44.636:none:: prioSet:{1={1}}
DEBUG:2013-10-25T12:39:44.636:none:: prioSet: {1={1}}
DEBUG:2013-10-25T12:39:44.636:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.640:none:: prioSet:{1={1, 2}}
DEBUG:2013-10-25T12:39:44.641:none:: prioSet: {1={1, 2}}
DEBUG:2013-10-25T12:39:44.641:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.646:none:: prioSet:{1={1, 2, 3}}
DEBUG:2013-10-25T12:39:44.646:none:: prioSet: {1={1, 2, 3}}
DEBUG:2013-10-25T12:39:44.647:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.648:none:: prioSet:{1={1, 2, 3, 4}}
DEBUG:2013-10-25T12:39:44.648:none:: prioSet: {1={1, 2, 3, 4}}
DEBUG:2013-10-25T12:39:44.648:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.649:none:: prioSet:{1={1, 2, 3, 4, 5}}
DEBUG:2013-10-25T12:39:44.649:none:: prioSet: {1={1, 2, 3, 4, 5}}
DEBUG:2013-10-25T12:39:44.649:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.652:none:: prioSet:{1={1, 2, 3, 4, 5, 6}}
DEBUG:2013-10-25T12:39:44.652:none:: prioSet: {1={1, 2, 3, 4, 5, 6}}
DEBUG:2013-10-25T12:39:44.652:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.653:none:: prioSet:{1={1, 2, 3, 4, 5, 6, 7}}
DEBUG:2013-10-25T12:39:44.654:none:: prioSet: {1={1, 2, 3, 4, 5, 6, 7}}
DEBUG:2013-10-25T12:39:44.654:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.655:none:: prioSet:{1={1, 2, 3, 4, 5, 6, 7, 8}}
DEBUG:2013-10-25T12:39:44.655:none:: prioSet: {1={1, 2, 3, 4, 5, 6, 7, 8}}
DEBUG:2013-10-25T12:39:44.658:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.663:none:: prioSet:{1={1, 2, 3, 4, 5, 6, 7, 8, 9}}
DEBUG:2013-10-25T12:39:44.663:none:: prioSet: {1={1, 2, 3, 4, 5, 6, 7, 8, 9}}
DEBUG:2013-10-25T12:39:44.664:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.665:none:: prioSet:{1={1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}
DEBUG:2013-10-25T12:39:44.665:none:: prioSet: {1={1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}
DEBUG:2013-10-25T12:39:44.665:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.665:none:: dpid: 3match: OFMatch[]
DEBUG:2013-10-25T12:39:44.666:none:: allRules: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
DEBUG:2013-10-25T12:39:44.667:classifier-dpid=00:00:00:00:00:00:00:03:: slices with access=lower
INFO:2013-10-25T12:39:44.667:classifier-dpid=00:00:00:00:00:00:00:03:: making new connection to slice lower
DEBUG:2013-10-25T12:39:44.672:slicer_lower_dpid=00:00:00:00:00:00:00:03:: initializing new FVSlicer
DEBUG:2013-10-25T12:39:44.677:none:: dpid: 3match: OFMatch[]
DEBUG:2013-10-25T12:39:44.677:none:: allRules: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
DEBUG:2013-10-25T12:39:44.677:slicer_lower_dpid=00:00:00:00:00:00:00:03:: adding access to port 1
DEBUG:2013-10-25T12:39:44.677:slicer_lower_dpid=00:00:00:00:00:00:00:03:: adding access to port 2
DEBUG:2013-10-25T12:39:44.678:slicer_lower_dpid=00:00:00:00:00:00:00:03:: adding access to port -2
INFO:2013-10-25T12:39:44.678:slicer_lower_dpid=00:00:00:00:00:00:00:03:: added port 1
WARN:2013-10-25T12:39:44.678:slicer_lower_dpid=00:00:00:00:00:00:00:03:: dropping msg: controller not connected: ofmsg:v=1;t=PORT_STATUS;l=64;x=0
INFO:2013-10-25T12:39:44.678:slicer_lower_dpid=00:00:00:00:00:00:00:03:: added port 2
WARN:2013-10-25T12:39:44.678:slicer_lower_dpid=00:00:00:00:00:00:00:03:: dropping msg: controller not connected: ofmsg:v=1;t=PORT_STATUS;l=64;x=0
INFO:2013-10-25T12:39:44.679:slicer_lower_dpid=00:00:00:00:00:00:00:03:: added port -2
WARN:2013-10-25T12:39:44.679:slicer_lower_dpid=00:00:00:00:00:00:00:03:: dropping msg: controller not connected: ofmsg:v=1;t=PORT_STATUS;l=64;x=0
INFO:2013-10-25T12:39:44.679:slicer_lower_dpid=00:00:00:00:00:00:00:03:: trying to reconnect to localhost:10002
DEBUG:2013-10-25T12:39:44.706:classifier-dpid=00:00:00:00:00:00:00:03:: giving flood perms to slice: fvadmin
ALERT:2013-10-25T12:39:44.706:classifier-dpid=00:00:00:00:00:00:00:03:: STARVING: handling event took 72ms: org.flowvisor.events.FVIOEvent@360af7
DEBUG:2013-10-25T12:39:44.707:slicer_upper_dpid=00:00:00:00:00:00:00:01:: connected
DEBUG:2013-10-25T12:39:44.707:slicer_upper_dpid=00:00:00:00:00:00:00:01:: FVSlicer StatusInfo: {floodperms=false, slice-name=upper, controller-port=10001, shutdown-status=false, controller-host=localhost, connection-status=true}
DEBUG:2013-10-25T12:39:44.707:slicer_upper_dpid=00:00:00:00:00:00:00:01:: send to controller: ofmsg:v=1;t=HELLO;l=8;x=0
DEBUG:2013-10-25T12:39:44.708:slicer_upper_dpid=00:00:00:00:00:00:00:01:: recv from controller: ofmsg:v=1;t=HELLO;l=8;x=0
DEBUG:2013-10-25T12:39:44.708:slicer_upper_dpid=00:00:00:00:00:00:00:01:: recv from controller: FVFeaturesRequest []
DEBUG:2013-10-25T12:39:44.708:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.708:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:FVFeaturesRequest []
DEBUG:2013-10-25T12:39:44.709:slicer_lower_dpid=00:00:00:00:00:00:00:03:: connected
DEBUG:2013-10-25T12:39:44.709:slicer_lower_dpid=00:00:00:00:00:00:00:03:: FVSlicer StatusInfo: {floodperms=false, slice-name=lower, controller-port=10002, shutdown-status=false, controller-host=localhost, connection-status=true}
DEBUG:2013-10-25T12:39:44.709:slicer_lower_dpid=00:00:00:00:00:00:00:03:: send to controller: ofmsg:v=1;t=HELLO;l=8;x=0
DEBUG:2013-10-25T12:39:44.709:slicer_lower_dpid=00:00:00:00:00:00:00:01:: recv from controller: ofmsg:v=1;t=HELLO;l=8;x=0
DEBUG:2013-10-25T12:39:44.709:slicer_lower_dpid=00:00:00:00:00:00:00:01:: recv from controller: FVFeaturesRequest []
DEBUG:2013-10-25T12:39:44.710:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.710:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:FVFeaturesRequest []
DEBUG:2013-10-25T12:39:44.712:classifier-dpid=00:00:00:00:00:00:00:02:: received from switch: FVFeaturesReply [ dpid=00:00:00:00:00:00:00:02,ports=3]
DEBUG:2013-10-25T12:39:44.712:slicer_upper_dpid=00:00:00:00:00:00:00:02:: send to controller: FVFeaturesReply [ dpid=00:00:00:00:00:00:00:02,ports=3]
DEBUG:2013-10-25T12:39:44.713:classifier-dpid=00:00:00:00:00:00:00:01:: received from switch: FVFeaturesReply [ dpid=00:00:00:00:00:00:00:01,ports=5]
DEBUG:2013-10-25T12:39:44.714:slicer_upper_dpid=00:00:00:00:00:00:00:01:: send to controller: FVFeaturesReply [ dpid=00:00:00:00:00:00:00:01,ports=2]
DEBUG:2013-10-25T12:39:44.714:classifier-dpid=00:00:00:00:00:00:00:01:: received from switch: FVFeaturesReply [ dpid=00:00:00:00:00:00:00:01,ports=5]
DEBUG:2013-10-25T12:39:44.714:slicer_lower_dpid=00:00:00:00:00:00:00:01:: send to controller: FVFeaturesReply [ dpid=00:00:00:00:00:00:00:01,ports=2]
DEBUG:2013-10-25T12:39:44.719:slicer_upper_dpid=00:00:00:00:00:00:00:02:: recv from controller: ofmsg:v=1;t=STATS_REQUEST;l=12;x=0;st=DESC
DEBUG:2013-10-25T12:39:44.719:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.720:classifier-dpid=00:00:00:00:00:00:00:02:: send to switch:ofmsg:v=1;t=STATS_REQUEST;l=12;x=257;st=DESC
DEBUG:2013-10-25T12:39:44.724:slicer_lower_dpid=00:00:00:00:00:00:00:01:: recv from controller: ofmsg:v=1;t=STATS_REQUEST;l=12;x=0;st=DESC
DEBUG:2013-10-25T12:39:44.724:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.724:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:ofmsg:v=1;t=STATS_REQUEST;l=12;x=258;st=DESC
DEBUG:2013-10-25T12:39:44.726:slicer_upper_dpid=00:00:00:00:00:00:00:01:: recv from controller: ofmsg:v=1;t=STATS_REQUEST;l=12;x=0;st=DESC
DEBUG:2013-10-25T12:39:44.726:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.726:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:ofmsg:v=1;t=STATS_REQUEST;l=12;x=259;st=DESC
DEBUG:2013-10-25T12:39:44.729:classifier-dpid=00:00:00:00:00:00:00:02:: received from switch: ofmsg:v=1;t=STATS_REPLY;l=1068;x=257;st=DESC
DEBUG:2013-10-25T12:39:44.729:slicer_upper_dpid=00:00:00:00:00:00:00:02:: sending to controller: ofmsg:v=1;t=STATS_REPLY;l=1068;x=0;st=DESC
DEBUG:2013-10-25T12:39:44.729:slicer_upper_dpid=00:00:00:00:00:00:00:02:: send to controller: ofmsg:v=1;t=STATS_REPLY;l=1068;x=0;st=DESC
DEBUG:2013-10-25T12:39:44.730:classifier-dpid=00:00:00:00:00:00:00:01:: received from switch: ofmsg:v=1;t=STATS_REPLY;l=1068;x=258;st=DESC
DEBUG:2013-10-25T12:39:44.730:slicer_lower_dpid=00:00:00:00:00:00:00:01:: sending to controller: ofmsg:v=1;t=STATS_REPLY;l=1068;x=0;st=DESC
DEBUG:2013-10-25T12:39:44.730:slicer_lower_dpid=00:00:00:00:00:00:00:01:: send to controller: ofmsg:v=1;t=STATS_REPLY;l=1068;x=0;st=DESC
DEBUG:2013-10-25T12:39:44.730:classifier-dpid=00:00:00:00:00:00:00:01:: received from switch: ofmsg:v=1;t=STATS_REPLY;l=1068;x=259;st=DESC
DEBUG:2013-10-25T12:39:44.730:slicer_upper_dpid=00:00:00:00:00:00:00:01:: sending to controller: ofmsg:v=1;t=STATS_REPLY;l=1068;x=0;st=DESC
DEBUG:2013-10-25T12:39:44.730:slicer_upper_dpid=00:00:00:00:00:00:00:01:: send to controller: ofmsg:v=1;t=STATS_REPLY;l=1068;x=0;st=DESC
DEBUG:2013-10-25T12:39:44.734:slicer_upper_dpid=00:00:00:00:00:00:00:02:: recv from controller: ofmsg:v=1;t=SET_CONFIG;l=12;x=0
DEBUG:2013-10-25T12:39:44.734:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.735:classifier-dpid=00:00:00:00:00:00:00:02:: send to switch:ofmsg:v=1;t=SET_CONFIG;l=12;x=258
DEBUG:2013-10-25T12:39:44.735:slicer_upper_dpid=00:00:00:00:00:00:00:02:: recv from controller: FVBarrierRequest []
DEBUG:2013-10-25T12:39:44.735:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.735:classifier-dpid=00:00:00:00:00:00:00:02:: send to switch:FVBarrierRequest []
DEBUG:2013-10-25T12:39:44.735:slicer_upper_dpid=00:00:00:00:00:00:00:02:: recv from controller: ofmsg:v=1;t=GET_CONFIG_REQUEST;l=8;x=0
DEBUG:2013-10-25T12:39:44.735:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.735:classifier-dpid=00:00:00:00:00:00:00:02:: send to switch:ofmsg:v=1;t=GET_CONFIG_REQUEST;l=8;x=260
DEBUG:2013-10-25T12:39:44.737:slicer_lower_dpid=00:00:00:00:00:00:00:01:: recv from controller: ofmsg:v=1;t=SET_CONFIG;l=12;x=0
DEBUG:2013-10-25T12:39:44.737:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.738:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:ofmsg:v=1;t=SET_CONFIG;l=12;x=260
DEBUG:2013-10-25T12:39:44.738:slicer_lower_dpid=00:00:00:00:00:00:00:01:: recv from controller: FVBarrierRequest []
DEBUG:2013-10-25T12:39:44.738:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.738:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:FVBarrierRequest []
DEBUG:2013-10-25T12:39:44.738:slicer_lower_dpid=00:00:00:00:00:00:00:01:: recv from controller: ofmsg:v=1;t=GET_CONFIG_REQUEST;l=8;x=0
DEBUG:2013-10-25T12:39:44.738:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.738:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:ofmsg:v=1;t=GET_CONFIG_REQUEST;l=8;x=262
DEBUG:2013-10-25T12:39:44.741:slicer_upper_dpid=00:00:00:00:00:00:00:01:: recv from controller: ofmsg:v=1;t=SET_CONFIG;l=12;x=0
DEBUG:2013-10-25T12:39:44.742:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.742:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:ofmsg:v=1;t=SET_CONFIG;l=12;x=263
DEBUG:2013-10-25T12:39:44.742:slicer_upper_dpid=00:00:00:00:00:00:00:01:: recv from controller: FVBarrierRequest []
DEBUG:2013-10-25T12:39:44.742:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.742:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:FVBarrierRequest []
DEBUG:2013-10-25T12:39:44.742:slicer_upper_dpid=00:00:00:00:00:00:00:01:: recv from controller: ofmsg:v=1;t=GET_CONFIG_REQUEST;l=8;x=0
DEBUG:2013-10-25T12:39:44.743:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.743:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:ofmsg:v=1;t=GET_CONFIG_REQUEST;l=8;x=265
DEBUG:2013-10-25T12:39:44.743:slicer_lower_dpid=00:00:00:00:00:00:00:03:: recv from controller: ofmsg:v=1;t=HELLO;l=8;x=0
DEBUG:2013-10-25T12:39:44.743:slicer_lower_dpid=00:00:00:00:00:00:00:03:: recv from controller: FVFeaturesRequest []
DEBUG:2013-10-25T12:39:44.743:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.743:classifier-dpid=00:00:00:00:00:00:00:03:: send to switch:FVFeaturesRequest []
DEBUG:2013-10-25T12:39:44.748:classifier-dpid=00:00:00:00:00:00:00:02:: received from switch: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=259
DEBUG:2013-10-25T12:39:44.748:slicer_upper_dpid=00:00:00:00:00:00:00:02:: sending to controller: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=0
DEBUG:2013-10-25T12:39:44.749:slicer_upper_dpid=00:00:00:00:00:00:00:02:: send to controller: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=0
DEBUG:2013-10-25T12:39:44.749:classifier-dpid=00:00:00:00:00:00:00:02:: received from switch: ofmsg:v=1;t=GET_CONFIG_REPLY;l=12;x=260
DEBUG:2013-10-25T12:39:44.749:slicer_upper_dpid=00:00:00:00:00:00:00:02:: send to controller: ofmsg:v=1;t=GET_CONFIG_REPLY;l=12;x=0
DEBUG:2013-10-25T12:39:44.749:classifier-dpid=00:00:00:00:00:00:00:01:: received from switch: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=261
DEBUG:2013-10-25T12:39:44.749:slicer_lower_dpid=00:00:00:00:00:00:00:01:: sending to controller: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=0
DEBUG:2013-10-25T12:39:44.749:slicer_lower_dpid=00:00:00:00:00:00:00:01:: send to controller: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=0
DEBUG:2013-10-25T12:39:44.749:classifier-dpid=00:00:00:00:00:00:00:01:: received from switch: ofmsg:v=1;t=GET_CONFIG_REPLY;l=12;x=262
DEBUG:2013-10-25T12:39:44.750:slicer_lower_dpid=00:00:00:00:00:00:00:01:: send to controller: ofmsg:v=1;t=GET_CONFIG_REPLY;l=12;x=0
DEBUG:2013-10-25T12:39:44.750:classifier-dpid=00:00:00:00:00:00:00:01:: received from switch: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=264
DEBUG:2013-10-25T12:39:44.750:slicer_upper_dpid=00:00:00:00:00:00:00:01:: sending to controller: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=0
DEBUG:2013-10-25T12:39:44.750:slicer_upper_dpid=00:00:00:00:00:00:00:01:: send to controller: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=0
DEBUG:2013-10-25T12:39:44.750:classifier-dpid=00:00:00:00:00:00:00:01:: received from switch: ofmsg:v=1;t=GET_CONFIG_REPLY;l=12;x=265
DEBUG:2013-10-25T12:39:44.750:slicer_upper_dpid=00:00:00:00:00:00:00:01:: send to controller: ofmsg:v=1;t=GET_CONFIG_REPLY;l=12;x=0
DEBUG:2013-10-25T12:39:44.752:slicer_upper_dpid=00:00:00:00:00:00:00:02:: recv from controller: FVFlowMod [ actions=DROP, command=3, cookie=0, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:44.752:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.752:slicer_upper_dpid=00:00:00:00:00:00:00:02:: recv from controller: FVFlowMod [ actions=DROP, command=3, cookie=0, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:44.752:none:: translateCookie newCookie:256
DEBUG:2013-10-25T12:39:44.752:none:: dpid: 2 match: OFMatch[]
DEBUG:2013-10-25T12:39:44.752:none:: OFMatch[]
DEBUG:2013-10-25T12:39:44.752:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:44.753:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:44.753:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:44.753:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:44.753:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:44.753:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:44.753:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:44.753:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:44.753:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:44.753:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:44.754:none:: Intersections: {3=FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:02],ruleMatch=[OFMatch[]],actionsList=[Slice:upper=7],id=[3],priority=[1],]]}
DEBUG:2013-10-25T12:39:44.754:none:: intersect: FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:02],ruleMatch=[OFMatch[]],actionsList=[Slice:upper=7],id=[3],priority=[1],]]
DEBUG:2013-10-25T12:39:44.754:classifier-dpid=00:00:00:00:00:00:00:02:: send to switch:FVFlowMod [ actions=DROP, command=3, cookie=256, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:44.755:slicer_upper_dpid=00:00:00:00:00:00:00:02:: expanded fm 1 times: FVFlowMod [ actions=DROP, command=3, cookie=256, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:44.755:slicer_upper_dpid=00:00:00:00:00:00:00:02:: recv from controller: FVBarrierRequest []
DEBUG:2013-10-25T12:39:44.755:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.755:classifier-dpid=00:00:00:00:00:00:00:02:: send to switch:FVBarrierRequest []
DEBUG:2013-10-25T12:39:44.756:slicer_lower_dpid=00:00:00:00:00:00:00:01:: recv from controller: FVFlowMod [ actions=DROP, command=3, cookie=0, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:44.756:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.756:slicer_lower_dpid=00:00:00:00:00:00:00:01:: recv from controller: FVFlowMod [ actions=DROP, command=3, cookie=0, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:44.757:none:: translateCookie newCookie:256
DEBUG:2013-10-25T12:39:44.757:none:: dpid: 1 match: OFMatch[]
DEBUG:2013-10-25T12:39:44.758:none:: OFMatch[]
DEBUG:2013-10-25T12:39:44.758:none:: Rule ids which intersect: {1, 2, 6, 7}
DEBUG:2013-10-25T12:39:44.758:none:: Rule ids which intersect: {1, 2, 6, 7}
DEBUG:2013-10-25T12:39:44.758:none:: Rule ids which intersect: {1, 2, 6, 7}
DEBUG:2013-10-25T12:39:44.758:none:: Rule ids which intersect: {1, 2, 6, 7}
DEBUG:2013-10-25T12:39:44.759:none:: Rule ids which intersect: {1, 2, 6, 7}
DEBUG:2013-10-25T12:39:44.759:none:: Rule ids which intersect: {1, 2, 6, 7}
DEBUG:2013-10-25T12:39:44.759:none:: Rule ids which intersect: {1, 2, 6, 7}
DEBUG:2013-10-25T12:39:44.759:none:: Rule ids which intersect: {1, 2, 6, 7}
DEBUG:2013-10-25T12:39:44.759:none:: Rule ids which intersect: {1, 2, 6, 7}
DEBUG:2013-10-25T12:39:44.759:none:: Rule ids which intersect: {1, 2, 6, 7}
DEBUG:2013-10-25T12:39:44.760:none:: Intersections: {1=FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:01],ruleMatch=[OFMatch[in_port=1]],actionsList=[Slice:upper=7],id=[1],priority=[1],]], 2=FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:01],ruleMatch=[OFMatch[in_port=3]],actionsList=[Slice:upper=7],id=[2],priority=[1],]], 6=FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:01],ruleMatch=[OFMatch[in_port=2]],actionsList=[Slice:lower=7],id=[6],priority=[1],]], 7=FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:01],ruleMatch=[OFMatch[in_port=4]],actionsList=[Slice:lower=7],id=[7],priority=[1],]]}
DEBUG:2013-10-25T12:39:44.760:none:: intersect: FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:01],ruleMatch=[OFMatch[in_port=1]],actionsList=[Slice:upper=7],id=[1],priority=[1],]]
DEBUG:2013-10-25T12:39:44.760:none:: intersect: FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:01],ruleMatch=[OFMatch[in_port=3]],actionsList=[Slice:upper=7],id=[2],priority=[1],]]
DEBUG:2013-10-25T12:39:44.760:none:: intersect: FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:01],ruleMatch=[OFMatch[in_port=2]],actionsList=[Slice:lower=7],id=[6],priority=[1],]]
DEBUG:2013-10-25T12:39:44.760:none:: prioSet: {1={1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}
DEBUG:2013-10-25T12:39:44.760:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.760:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:FVFlowMod [ actions=DROP, command=3, cookie=256, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[in_port=2], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:44.761:none:: intersect: FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:01],ruleMatch=[OFMatch[in_port=4]],actionsList=[Slice:lower=7],id=[7],priority=[1],]]
DEBUG:2013-10-25T12:39:44.761:none:: prioSet: {1={1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}
DEBUG:2013-10-25T12:39:44.761:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.761:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:FVFlowMod [ actions=DROP, command=3, cookie=256, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[in_port=4], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:44.761:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:FVFlowMod [ actions=DROP, command=3, cookie=256, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[in_port=4], outPort=-3, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:44.761:slicer_lower_dpid=00:00:00:00:00:00:00:01:: expanded fm 3 times: FVFlowMod [ actions=DROP, command=3, cookie=256, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:44.761:slicer_lower_dpid=00:00:00:00:00:00:00:01:: recv from controller: FVBarrierRequest []
DEBUG:2013-10-25T12:39:44.761:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.762:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:FVBarrierRequest []
DEBUG:2013-10-25T12:39:44.764:slicer_upper_dpid=00:00:00:00:00:00:00:01:: recv from controller: FVFlowMod [ actions=DROP, command=3, cookie=0, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:44.764:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.764:slicer_upper_dpid=00:00:00:00:00:00:00:01:: recv from controller: FVFlowMod [ actions=DROP, command=3, cookie=0, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:44.764:none:: translateCookie newCookie:257
DEBUG:2013-10-25T12:39:44.764:none:: dpid: 1 match: OFMatch[]
DEBUG:2013-10-25T12:39:44.764:none:: OFMatch[]
DEBUG:2013-10-25T12:39:44.765:none:: Rule ids which intersect: {1, 2, 6, 7}
DEBUG:2013-10-25T12:39:44.765:none:: Rule ids which intersect: {1, 2, 6, 7}
DEBUG:2013-10-25T12:39:44.765:none:: Rule ids which intersect: {1, 2, 6, 7}
DEBUG:2013-10-25T12:39:44.765:none:: Rule ids which intersect: {1, 2, 6, 7}
DEBUG:2013-10-25T12:39:44.765:none:: Rule ids which intersect: {1, 2, 6, 7}
DEBUG:2013-10-25T12:39:44.765:none:: Rule ids which intersect: {1, 2, 6, 7}
DEBUG:2013-10-25T12:39:44.766:none:: Rule ids which intersect: {1, 2, 6, 7}
DEBUG:2013-10-25T12:39:44.766:none:: Rule ids which intersect: {1, 2, 6, 7}
DEBUG:2013-10-25T12:39:44.766:none:: Rule ids which intersect: {1, 2, 6, 7}
DEBUG:2013-10-25T12:39:44.766:none:: Rule ids which intersect: {1, 2, 6, 7}
DEBUG:2013-10-25T12:39:44.766:none:: Intersections: {1=FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:01],ruleMatch=[OFMatch[in_port=1]],actionsList=[Slice:upper=7],id=[1],priority=[1],]], 2=FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:01],ruleMatch=[OFMatch[in_port=3]],actionsList=[Slice:upper=7],id=[2],priority=[1],]], 6=FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:01],ruleMatch=[OFMatch[in_port=2]],actionsList=[Slice:lower=7],id=[6],priority=[1],]], 7=FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:01],ruleMatch=[OFMatch[in_port=4]],actionsList=[Slice:lower=7],id=[7],priority=[1],]]}
DEBUG:2013-10-25T12:39:44.766:none:: intersect: FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:01],ruleMatch=[OFMatch[in_port=1]],actionsList=[Slice:upper=7],id=[1],priority=[1],]]
DEBUG:2013-10-25T12:39:44.767:none:: prioSet: {1={1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}
DEBUG:2013-10-25T12:39:44.767:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.767:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:FVFlowMod [ actions=DROP, command=3, cookie=257, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[in_port=1], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:44.767:none:: intersect: FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:01],ruleMatch=[OFMatch[in_port=3]],actionsList=[Slice:upper=7],id=[2],priority=[1],]]
DEBUG:2013-10-25T12:39:44.767:none:: prioSet: {1={1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}
DEBUG:2013-10-25T12:39:44.767:none:: prioRange: {1=[0, 65535]}
DEBUG:2013-10-25T12:39:44.767:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:FVFlowMod [ actions=DROP, command=3, cookie=257, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[in_port=3], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:44.768:none:: intersect: FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:01],ruleMatch=[OFMatch[in_port=2]],actionsList=[Slice:lower=7],id=[6],priority=[1],]]
DEBUG:2013-10-25T12:39:44.768:none:: intersect: FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:01],ruleMatch=[OFMatch[in_port=4]],actionsList=[Slice:lower=7],id=[7],priority=[1],]]
DEBUG:2013-10-25T12:39:44.768:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:FVFlowMod [ actions=DROP, command=3, cookie=257, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[in_port=3], outPort=-3, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:44.768:slicer_upper_dpid=00:00:00:00:00:00:00:01:: expanded fm 3 times: FVFlowMod [ actions=DROP, command=3, cookie=257, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:44.768:slicer_upper_dpid=00:00:00:00:00:00:00:01:: recv from controller: FVBarrierRequest []
DEBUG:2013-10-25T12:39:44.768:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.768:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:FVBarrierRequest []
DEBUG:2013-10-25T12:39:44.768:classifier-dpid=00:00:00:00:00:00:00:03:: received from switch: FVFeaturesReply [ dpid=00:00:00:00:00:00:00:03,ports=3]
DEBUG:2013-10-25T12:39:44.769:slicer_lower_dpid=00:00:00:00:00:00:00:03:: send to controller: FVFeaturesReply [ dpid=00:00:00:00:00:00:00:03,ports=3]
DEBUG:2013-10-25T12:39:44.770:slicer_lower_dpid=00:00:00:00:00:00:00:03:: recv from controller: ofmsg:v=1;t=STATS_REQUEST;l=12;x=0;st=DESC
DEBUG:2013-10-25T12:39:44.770:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.770:classifier-dpid=00:00:00:00:00:00:00:03:: send to switch:ofmsg:v=1;t=STATS_REQUEST;l=12;x=257;st=DESC
DEBUG:2013-10-25T12:39:44.771:classifier-dpid=00:00:00:00:00:00:00:02:: received from switch: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=262
DEBUG:2013-10-25T12:39:44.771:slicer_upper_dpid=00:00:00:00:00:00:00:02:: sending to controller: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=0
DEBUG:2013-10-25T12:39:44.771:slicer_upper_dpid=00:00:00:00:00:00:00:02:: send to controller: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=0
DEBUG:2013-10-25T12:39:44.772:classifier-dpid=00:00:00:00:00:00:00:01:: received from switch: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=267
DEBUG:2013-10-25T12:39:44.772:slicer_lower_dpid=00:00:00:00:00:00:00:01:: sending to controller: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=0
DEBUG:2013-10-25T12:39:44.772:slicer_lower_dpid=00:00:00:00:00:00:00:01:: send to controller: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=0
DEBUG:2013-10-25T12:39:44.772:classifier-dpid=00:00:00:00:00:00:00:01:: received from switch: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=269
DEBUG:2013-10-25T12:39:44.772:slicer_upper_dpid=00:00:00:00:00:00:00:01:: sending to controller: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=0
DEBUG:2013-10-25T12:39:44.772:slicer_upper_dpid=00:00:00:00:00:00:00:01:: send to controller: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=0
DEBUG:2013-10-25T12:39:44.774:classifier-dpid=00:00:00:00:00:00:00:03:: received from switch: ofmsg:v=1;t=STATS_REPLY;l=1068;x=257;st=DESC
DEBUG:2013-10-25T12:39:44.775:slicer_lower_dpid=00:00:00:00:00:00:00:03:: sending to controller: ofmsg:v=1;t=STATS_REPLY;l=1068;x=0;st=DESC
DEBUG:2013-10-25T12:39:44.775:slicer_lower_dpid=00:00:00:00:00:00:00:03:: send to controller: ofmsg:v=1;t=STATS_REPLY;l=1068;x=0;st=DESC
DEBUG:2013-10-25T12:39:44.776:slicer_lower_dpid=00:00:00:00:00:00:00:03:: recv from controller: ofmsg:v=1;t=SET_CONFIG;l=12;x=0
DEBUG:2013-10-25T12:39:44.776:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.776:classifier-dpid=00:00:00:00:00:00:00:03:: send to switch:ofmsg:v=1;t=SET_CONFIG;l=12;x=258
DEBUG:2013-10-25T12:39:44.776:slicer_lower_dpid=00:00:00:00:00:00:00:03:: recv from controller: FVBarrierRequest []
DEBUG:2013-10-25T12:39:44.776:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.776:classifier-dpid=00:00:00:00:00:00:00:03:: send to switch:FVBarrierRequest []
DEBUG:2013-10-25T12:39:44.776:slicer_lower_dpid=00:00:00:00:00:00:00:03:: recv from controller: ofmsg:v=1;t=GET_CONFIG_REQUEST;l=8;x=0
DEBUG:2013-10-25T12:39:44.776:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.776:classifier-dpid=00:00:00:00:00:00:00:03:: send to switch:ofmsg:v=1;t=GET_CONFIG_REQUEST;l=8;x=260
DEBUG:2013-10-25T12:39:44.778:classifier-dpid=00:00:00:00:00:00:00:03:: received from switch: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=259
DEBUG:2013-10-25T12:39:44.778:slicer_lower_dpid=00:00:00:00:00:00:00:03:: sending to controller: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=0
DEBUG:2013-10-25T12:39:44.778:slicer_lower_dpid=00:00:00:00:00:00:00:03:: send to controller: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=0
DEBUG:2013-10-25T12:39:44.778:classifier-dpid=00:00:00:00:00:00:00:03:: received from switch: ofmsg:v=1;t=GET_CONFIG_REPLY;l=12;x=260
DEBUG:2013-10-25T12:39:44.778:slicer_lower_dpid=00:00:00:00:00:00:00:03:: send to controller: ofmsg:v=1;t=GET_CONFIG_REPLY;l=12;x=0
DEBUG:2013-10-25T12:39:44.779:slicer_lower_dpid=00:00:00:00:00:00:00:03:: recv from controller: FVFlowMod [ actions=DROP, command=3, cookie=0, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:44.779:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.779:slicer_lower_dpid=00:00:00:00:00:00:00:03:: recv from controller: FVFlowMod [ actions=DROP, command=3, cookie=0, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:44.779:none:: translateCookie newCookie:256
DEBUG:2013-10-25T12:39:44.780:none:: dpid: 3 match: OFMatch[]
DEBUG:2013-10-25T12:39:44.780:none:: OFMatch[]
DEBUG:2013-10-25T12:39:44.780:none:: Rule ids which intersect: {8}
DEBUG:2013-10-25T12:39:44.780:none:: Rule ids which intersect: {8}
DEBUG:2013-10-25T12:39:44.780:none:: Rule ids which intersect: {8}
DEBUG:2013-10-25T12:39:44.780:none:: Rule ids which intersect: {8}
DEBUG:2013-10-25T12:39:44.780:none:: Rule ids which intersect: {8}
DEBUG:2013-10-25T12:39:44.780:none:: Rule ids which intersect: {8}
DEBUG:2013-10-25T12:39:44.781:none:: Rule ids which intersect: {8}
DEBUG:2013-10-25T12:39:44.781:none:: Rule ids which intersect: {8}
DEBUG:2013-10-25T12:39:44.781:none:: Rule ids which intersect: {8}
DEBUG:2013-10-25T12:39:44.781:none:: Rule ids which intersect: {8}
DEBUG:2013-10-25T12:39:44.781:none:: Intersections: {8=FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:03],ruleMatch=[OFMatch[]],actionsList=[Slice:lower=7],id=[8],priority=[1],]]}
DEBUG:2013-10-25T12:39:44.781:none:: intersect: FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:03],ruleMatch=[OFMatch[]],actionsList=[Slice:lower=7],id=[8],priority=[1],]]
DEBUG:2013-10-25T12:39:44.781:classifier-dpid=00:00:00:00:00:00:00:03:: send to switch:FVFlowMod [ actions=DROP, command=3, cookie=256, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:44.782:slicer_lower_dpid=00:00:00:00:00:00:00:03:: expanded fm 1 times: FVFlowMod [ actions=DROP, command=3, cookie=256, flags=0, hardTimeout=0, idleTimeout=0, match=OFMatch[], outPort=-1, priority=0, length=72, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:44.782:slicer_lower_dpid=00:00:00:00:00:00:00:03:: recv from controller: FVBarrierRequest []
DEBUG:2013-10-25T12:39:44.782:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:44.782:classifier-dpid=00:00:00:00:00:00:00:03:: send to switch:FVBarrierRequest []
DEBUG:2013-10-25T12:39:44.783:classifier-dpid=00:00:00:00:00:00:00:03:: received from switch: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=262
DEBUG:2013-10-25T12:39:44.783:slicer_lower_dpid=00:00:00:00:00:00:00:03:: sending to controller: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=0
DEBUG:2013-10-25T12:39:44.783:slicer_lower_dpid=00:00:00:00:00:00:00:03:: send to controller: ofmsg:v=1;t=BARRIER_REPLY;l=8;x=0
DEBUG:2013-10-25T12:39:47.939:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:47.944:classifier-dpid=00:00:00:00:00:00:00:04:: received from switch: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:48.445:slicer_upper_dpid=00:00:00:00:00:00:00:04:: send to controller: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:48.449:slicer_upper_dpid=00:00:00:00:00:00:00:04:: recv from controller: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:48.449:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:48.618:slicer_lower_dpid=00:00:00:00:00:00:00:04:: send to controller: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:48.619:slicer_lower_dpid=00:00:00:00:00:00:00:04:: recv from controller: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:48.619:none:: Refilled 200 bucket has 200
WARN:2013-10-25T12:39:48.667:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58982]:: is shutdown: ignoring: FVTimerEvent [arg=null, expireTime=+-1ms, id=4,src=classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58982]]
WARN:2013-10-25T12:39:48.667:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58982]:: is shutdown: ignoring: FVTimerEvent [arg=null, expireTime=+-1ms, id=5,src=classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58982]]
WARN:2013-10-25T12:39:48.687:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58983]:: is shutdown: ignoring: FVTimerEvent [arg=null, expireTime=+0ms, id=6,src=classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58983]]
WARN:2013-10-25T12:39:48.688:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58983]:: is shutdown: ignoring: FVTimerEvent [arg=null, expireTime=+-1ms, id=7,src=classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58983]]
WARN:2013-10-25T12:39:48.705:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58984]:: is shutdown: ignoring: FVTimerEvent [arg=null, expireTime=+-1ms, id=8,src=classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58984]]
WARN:2013-10-25T12:39:48.705:classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58984]:: is shutdown: ignoring: FVTimerEvent [arg=null, expireTime=+-1ms, id=9,src=classifier-unidentified:java.nio.channels.SocketChannel[connected local=/127.0.0.1:6633 remote=/127.0.0.1:58984]]
DEBUG:2013-10-25T12:39:49.338:classifier-dpid=00:00:00:00:00:00:00:01:: received from switch: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:49.339:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:49.341:classifier-dpid=00:00:00:00:00:00:00:02:: received from switch: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:49.342:classifier-dpid=00:00:00:00:00:00:00:02:: send to switch:FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:49.342:classifier-dpid=00:00:00:00:00:00:00:03:: received from switch: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:49.343:classifier-dpid=00:00:00:00:00:00:00:03:: send to switch:FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:49.350:classifier-dpid=00:00:00:00:00:00:00:02:: send to switch:FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:49.355:classifier-dpid=00:00:00:00:00:00:00:02:: received from switch: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:49.406:slicer_upper_dpid=00:00:00:00:00:00:00:02:: send to controller: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:49.407:slicer_upper_dpid=00:00:00:00:00:00:00:02:: recv from controller: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:49.407:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:49.442:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:49.444:classifier-dpid=00:00:00:00:00:00:00:01:: received from switch: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:49.530:slicer_upper_dpid=00:00:00:00:00:00:00:01:: send to controller: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:49.531:slicer_upper_dpid=00:00:00:00:00:00:00:01:: recv from controller: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:49.531:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:49.591:slicer_lower_dpid=00:00:00:00:00:00:00:01:: send to controller: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:49.592:slicer_lower_dpid=00:00:00:00:00:00:00:01:: recv from controller: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:49.592:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:49.616:classifier-dpid=00:00:00:00:00:00:00:03:: send to switch:FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:49.623:classifier-dpid=00:00:00:00:00:00:00:03:: received from switch: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:49.690:slicer_lower_dpid=00:00:00:00:00:00:00:03:: send to controller: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:49.691:slicer_lower_dpid=00:00:00:00:00:00:00:03:: recv from controller: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:49.691:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:52.336:classifier-dpid=00:00:00:00:00:00:00:04:: received from switch: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:52.337:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:52.941:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:52.946:classifier-dpid=00:00:00:00:00:00:00:04:: received from switch: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:53.449:slicer_upper_dpid=00:00:00:00:00:00:00:04:: send to controller: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:53.451:slicer_upper_dpid=00:00:00:00:00:00:00:04:: recv from controller: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:53.452:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:53.619:slicer_lower_dpid=00:00:00:00:00:00:00:04:: send to controller: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:53.622:slicer_lower_dpid=00:00:00:00:00:00:00:04:: recv from controller: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:53.622:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:54.339:classifier-dpid=00:00:00:00:00:00:00:01:: received from switch: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:54.339:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:54.340:classifier-dpid=00:00:00:00:00:00:00:02:: received from switch: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:54.340:classifier-dpid=00:00:00:00:00:00:00:02:: send to switch:FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:54.340:classifier-dpid=00:00:00:00:00:00:00:03:: received from switch: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:54.341:classifier-dpid=00:00:00:00:00:00:00:03:: send to switch:FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:54.350:classifier-dpid=00:00:00:00:00:00:00:02:: send to switch:FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:54.355:classifier-dpid=00:00:00:00:00:00:00:02:: received from switch: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:54.406:slicer_upper_dpid=00:00:00:00:00:00:00:02:: send to controller: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:54.408:slicer_upper_dpid=00:00:00:00:00:00:00:02:: recv from controller: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:54.408:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:54.442:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:54.448:classifier-dpid=00:00:00:00:00:00:00:01:: received from switch: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:54.531:slicer_upper_dpid=00:00:00:00:00:00:00:01:: send to controller: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:54.533:slicer_upper_dpid=00:00:00:00:00:00:00:01:: recv from controller: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:54.533:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:54.593:slicer_lower_dpid=00:00:00:00:00:00:00:01:: send to controller: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:54.594:slicer_lower_dpid=00:00:00:00:00:00:00:01:: recv from controller: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:54.594:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:54.617:classifier-dpid=00:00:00:00:00:00:00:03:: send to switch:FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:54.619:classifier-dpid=00:00:00:00:00:00:00:03:: received from switch: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:54.691:slicer_lower_dpid=00:00:00:00:00:00:00:03:: send to controller: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:54.692:slicer_lower_dpid=00:00:00:00:00:00:00:03:: recv from controller: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:54.692:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:56.090:classifier-dpid=00:00:00:00:00:00:00:01:: received from switch: FVPacketIn [reason=NO_MATCH, inPort=3, packetData=[0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 8, 0, 69, 0, 0, 84, 0, 0, 64, 0, 64, 1, 38, -90, 10, 0, 0, 1, 10, 0, 0, 3, 8, 0, 36, 53, 23, 125, 0, 1, -36, -98, 106, 82, -119, 88, 1, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55]]
DEBUG:2013-10-25T12:39:56.091:none:: inside handleLLDPFromSwitch in LLDPUtil
DEBUG:2013-10-25T12:39:56.091:none:: Checking if the pkt is LLDP?2048
DEBUG:2013-10-25T12:39:56.093:none:: The pkt is not LLDP
DEBUG:2013-10-25T12:39:56.093:none:: dpid: 1match: OFMatch[in_port=3,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8]
DEBUG:2013-10-25T12:39:56.094:none:: allRules: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
DEBUG:2013-10-25T12:39:56.094:slicer_upper_dpid=00:00:00:00:00:00:00:01:: allowing bufferID: 256
DEBUG:2013-10-25T12:39:56.094:slicer_upper_dpid=00:00:00:00:00:00:00:01:: send to controller: FVPacketIn [reason=NO_MATCH, inPort=3, packetData=[0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 8, 0, 69, 0, 0, 84, 0, 0, 64, 0, 64, 1, 38, -90, 10, 0, 0, 1, 10, 0, 0, 3, 8, 0, 36, 53, 23, 125, 0, 1, -36, -98, 106, 82, -119, 88, 1, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55]]
ALERT:2013-10-25T12:39:56.115:slicer_upper_dpid=00:00:00:00:00:00:00:01:: STARVING: handling event took 21ms: org.flowvisor.events.FVIOEvent@201395
DEBUG:2013-10-25T12:39:56.169:slicer_upper_dpid=00:00:00:00:00:00:00:01:: recv from controller: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=1, length=8, type=OUTPUT];port=1, command=0, cookie=0, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=3,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.170:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:56.170:slicer_upper_dpid=00:00:00:00:00:00:00:01:: recv from controller: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=1, length=8, type=OUTPUT];port=1, command=0, cookie=0, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=3,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.170:none:: translateCookie newCookie:258
DEBUG:2013-10-25T12:39:56.170:none:: dpid: 1 match: OFMatch[in_port=3,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8]
DEBUG:2013-10-25T12:39:56.170:none:: OFMatch[in_port=3,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8]
DEBUG:2013-10-25T12:39:56.170:none:: Rule ids which intersect: {2}
DEBUG:2013-10-25T12:39:56.171:none:: Rule ids which intersect: {2}
DEBUG:2013-10-25T12:39:56.171:none:: Setting input port
DEBUG:2013-10-25T12:39:56.171:none:: Rule ids which intersect: {2}
DEBUG:2013-10-25T12:39:56.171:none:: Rule ids which intersect: {2}
DEBUG:2013-10-25T12:39:56.171:none:: Rule ids which intersect: {2}
DEBUG:2013-10-25T12:39:56.171:none:: Rule ids which intersect: {2}
DEBUG:2013-10-25T12:39:56.171:none:: Rule ids which intersect: {2}
DEBUG:2013-10-25T12:39:56.171:none:: Rule ids which intersect: {2}
DEBUG:2013-10-25T12:39:56.172:none:: Rule ids which intersect: {2}
DEBUG:2013-10-25T12:39:56.172:none:: Rule ids which intersect: {2}
DEBUG:2013-10-25T12:39:56.172:none:: Intersections: {2=FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:01],ruleMatch=[OFMatch[in_port=3,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8]],actionsList=[Slice:upper=7],id=[2],priority=[1],]]}
DEBUG:2013-10-25T12:39:56.172:none:: intersect: FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:01],ruleMatch=[OFMatch[in_port=3,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8]],actionsList=[Slice:upper=7],id=[2],priority=[1],]]
WARN:2013-10-25T12:39:56.172:slicer_upper_dpid=00:00:00:00:00:00:00:01:: Verifying Slice is not over its flow rule limit
DEBUG:2013-10-25T12:39:56.172:classifier-dpid=00:00:00:00:00:00:00:01:: Overall limit is -1 current value is 0
DEBUG:2013-10-25T12:39:56.173:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:FVFlowMod [ actions=OFActionOutput [maxLength=0, port=1, length=8, type=OUTPUT];port=1, command=0, cookie=258, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=3,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.178:slicer_upper_dpid=00:00:00:00:00:00:00:01:: expanded fm 1 times: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=1, length=8, type=OUTPUT];port=1, command=0, cookie=258, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=3,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.183:slicer_upper_dpid=00:00:00:00:00:00:00:01:: recv from controller: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=2, length=8, type=OUTPUT];port=2, command=0, cookie=0, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=3,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.183:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:56.183:slicer_upper_dpid=00:00:00:00:00:00:00:01:: recv from controller: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=2, length=8, type=OUTPUT];port=2, command=0, cookie=0, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=3,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.183:none:: translateCookie newCookie:259
WARN:2013-10-25T12:39:56.185:slicer_upper_dpid=00:00:00:00:00:00:00:01:: EPERM bad actions: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=2, length=8, type=OUTPUT];port=2, command=0, cookie=259, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=3,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.186:slicer_upper_dpid=00:00:00:00:00:00:00:01:: send to controller: c=4;t=2;msg=FVFlowMod [ actions=OFActionOutput [maxLength=0, port=2, length=8, type=OUTPUT];port=2, command=0, cookie=259, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=3,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1];err=[80]
DEBUG:2013-10-25T12:39:56.187:classifier-dpid=00:00:00:00:00:00:00:02:: received from switch: FVPacketIn [reason=NO_MATCH, inPort=1, packetData=[0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 8, 0, 69, 0, 0, 84, 0, 0, 64, 0, 64, 1, 38, -90, 10, 0, 0, 1, 10, 0, 0, 3, 8, 0, 36, 53, 23, 125, 0, 1, -36, -98, 106, 82, -119, 88, 1, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55]]
DEBUG:2013-10-25T12:39:56.187:none:: inside handleLLDPFromSwitch in LLDPUtil
DEBUG:2013-10-25T12:39:56.187:none:: Checking if the pkt is LLDP?2048
DEBUG:2013-10-25T12:39:56.187:none:: The pkt is not LLDP
DEBUG:2013-10-25T12:39:56.187:none:: dpid: 2match: OFMatch[in_port=1,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8]
DEBUG:2013-10-25T12:39:56.187:none:: allRules: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
DEBUG:2013-10-25T12:39:56.188:slicer_upper_dpid=00:00:00:00:00:00:00:02:: allowing bufferID: 256
DEBUG:2013-10-25T12:39:56.188:slicer_upper_dpid=00:00:00:00:00:00:00:02:: send to controller: FVPacketIn [reason=NO_MATCH, inPort=1, packetData=[0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 8, 0, 69, 0, 0, 84, 0, 0, 64, 0, 64, 1, 38, -90, 10, 0, 0, 1, 10, 0, 0, 3, 8, 0, 36, 53, 23, 125, 0, 1, -36, -98, 106, 82, -119, 88, 1, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55]]
DEBUG:2013-10-25T12:39:56.195:slicer_upper_dpid=00:00:00:00:00:00:00:02:: recv from controller: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=2, length=8, type=OUTPUT];port=2, command=0, cookie=0, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=1,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.195:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:56.196:slicer_upper_dpid=00:00:00:00:00:00:00:02:: recv from controller: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=2, length=8, type=OUTPUT];port=2, command=0, cookie=0, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=1,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.196:none:: translateCookie newCookie:257
DEBUG:2013-10-25T12:39:56.196:none:: dpid: 2 match: OFMatch[in_port=1,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8]
DEBUG:2013-10-25T12:39:56.196:none:: OFMatch[in_port=1,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8]
DEBUG:2013-10-25T12:39:56.196:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:56.197:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:56.197:none:: Setting input port
DEBUG:2013-10-25T12:39:56.197:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:56.197:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:56.197:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:56.197:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:56.197:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:56.197:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:56.202:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:56.202:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:56.202:none:: Intersections: {3=FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:02],ruleMatch=[OFMatch[in_port=1,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8]],actionsList=[Slice:upper=7],id=[3],priority=[1],]]}
DEBUG:2013-10-25T12:39:56.202:none:: intersect: FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:02],ruleMatch=[OFMatch[in_port=1,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8]],actionsList=[Slice:upper=7],id=[3],priority=[1],]]
WARN:2013-10-25T12:39:56.202:slicer_upper_dpid=00:00:00:00:00:00:00:02:: Verifying Slice is not over its flow rule limit
DEBUG:2013-10-25T12:39:56.202:classifier-dpid=00:00:00:00:00:00:00:02:: Overall limit is -1 current value is 0
DEBUG:2013-10-25T12:39:56.203:classifier-dpid=00:00:00:00:00:00:00:02:: send to switch:FVFlowMod [ actions=OFActionOutput [maxLength=0, port=2, length=8, type=OUTPUT];port=2, command=0, cookie=257, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=1,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.203:slicer_upper_dpid=00:00:00:00:00:00:00:02:: expanded fm 1 times: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=2, length=8, type=OUTPUT];port=2, command=0, cookie=257, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=1,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.207:classifier-dpid=00:00:00:00:00:00:00:04:: received from switch: FVPacketIn [reason=NO_MATCH, inPort=1, packetData=[0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 8, 0, 69, 0, 0, 84, 0, 0, 64, 0, 64, 1, 38, -90, 10, 0, 0, 1, 10, 0, 0, 3, 8, 0, 36, 53, 23, 125, 0, 1, -36, -98, 106, 82, -119, 88, 1, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55]]
DEBUG:2013-10-25T12:39:56.207:none:: inside handleLLDPFromSwitch in LLDPUtil
DEBUG:2013-10-25T12:39:56.208:none:: Checking if the pkt is LLDP?2048
DEBUG:2013-10-25T12:39:56.208:none:: The pkt is not LLDP
DEBUG:2013-10-25T12:39:56.208:none:: dpid: 4match: OFMatch[in_port=1,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8]
DEBUG:2013-10-25T12:39:56.208:none:: allRules: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
DEBUG:2013-10-25T12:39:56.209:slicer_upper_dpid=00:00:00:00:00:00:00:04:: allowing bufferID: 256
DEBUG:2013-10-25T12:39:56.209:slicer_upper_dpid=00:00:00:00:00:00:00:04:: send to controller: FVPacketIn [reason=NO_MATCH, inPort=1, packetData=[0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 8, 0, 69, 0, 0, 84, 0, 0, 64, 0, 64, 1, 38, -90, 10, 0, 0, 1, 10, 0, 0, 3, 8, 0, 36, 53, 23, 125, 0, 1, -36, -98, 106, 82, -119, 88, 1, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55]]
DEBUG:2013-10-25T12:39:56.214:slicer_upper_dpid=00:00:00:00:00:00:00:04:: recv from controller: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=3, length=8, type=OUTPUT];port=3, command=0, cookie=0, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=1,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.214:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:56.215:slicer_upper_dpid=00:00:00:00:00:00:00:04:: recv from controller: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=3, length=8, type=OUTPUT];port=3, command=0, cookie=0, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=1,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.215:none:: translateCookie newCookie:258
DEBUG:2013-10-25T12:39:56.215:none:: dpid: 4 match: OFMatch[in_port=1,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8]
DEBUG:2013-10-25T12:39:56.215:none:: OFMatch[in_port=1,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8]
DEBUG:2013-10-25T12:39:56.215:none:: Rule ids which intersect: {4}
DEBUG:2013-10-25T12:39:56.215:none:: Rule ids which intersect: {4}
DEBUG:2013-10-25T12:39:56.216:none:: Setting input port
DEBUG:2013-10-25T12:39:56.216:none:: Rule ids which intersect: {4}
DEBUG:2013-10-25T12:39:56.216:none:: Rule ids which intersect: {4}
DEBUG:2013-10-25T12:39:56.216:none:: Rule ids which intersect: {4}
DEBUG:2013-10-25T12:39:56.216:none:: Rule ids which intersect: {4}
DEBUG:2013-10-25T12:39:56.216:none:: Rule ids which intersect: {4}
DEBUG:2013-10-25T12:39:56.216:none:: Rule ids which intersect: {4}
DEBUG:2013-10-25T12:39:56.217:none:: Rule ids which intersect: {4}
DEBUG:2013-10-25T12:39:56.217:none:: Rule ids which intersect: {4}
DEBUG:2013-10-25T12:39:56.217:none:: Intersections: {4=FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:04],ruleMatch=[OFMatch[in_port=1,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8]],actionsList=[Slice:upper=7],id=[4],priority=[1],]]}
DEBUG:2013-10-25T12:39:56.217:none:: intersect: FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:04],ruleMatch=[OFMatch[in_port=1,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8]],actionsList=[Slice:upper=7],id=[4],priority=[1],]]
WARN:2013-10-25T12:39:56.217:slicer_upper_dpid=00:00:00:00:00:00:00:04:: Verifying Slice is not over its flow rule limit
DEBUG:2013-10-25T12:39:56.218:classifier-dpid=00:00:00:00:00:00:00:04:: Overall limit is -1 current value is 0
DEBUG:2013-10-25T12:39:56.218:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:FVFlowMod [ actions=OFActionOutput [maxLength=0, port=3, length=8, type=OUTPUT];port=3, command=0, cookie=258, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=1,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.218:slicer_upper_dpid=00:00:00:00:00:00:00:04:: expanded fm 1 times: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=3, length=8, type=OUTPUT];port=3, command=0, cookie=258, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=1,dl_dst=00:00:00:00:00:03,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.3,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.223:classifier-dpid=00:00:00:00:00:00:00:04:: received from switch: FVPacketIn [reason=NO_MATCH, inPort=3, packetData=[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 8, 0, 69, 0, 0, 84, 84, -20, 0, 0, 64, 1, 17, -70, 10, 0, 0, 3, 10, 0, 0, 1, 0, 0, 44, 53, 23, 125, 0, 1, -36, -98, 106, 82, -119, 88, 1, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55]]
DEBUG:2013-10-25T12:39:56.223:none:: inside handleLLDPFromSwitch in LLDPUtil
DEBUG:2013-10-25T12:39:56.223:none:: Checking if the pkt is LLDP?2048
DEBUG:2013-10-25T12:39:56.224:none:: The pkt is not LLDP
DEBUG:2013-10-25T12:39:56.224:none:: dpid: 4match: OFMatch[in_port=3,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0]
DEBUG:2013-10-25T12:39:56.224:none:: allRules: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
DEBUG:2013-10-25T12:39:56.229:slicer_upper_dpid=00:00:00:00:00:00:00:04:: allowing bufferID: 257
DEBUG:2013-10-25T12:39:56.229:slicer_upper_dpid=00:00:00:00:00:00:00:04:: send to controller: FVPacketIn [reason=NO_MATCH, inPort=3, packetData=[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 8, 0, 69, 0, 0, 84, 84, -20, 0, 0, 64, 1, 17, -70, 10, 0, 0, 3, 10, 0, 0, 1, 0, 0, 44, 53, 23, 125, 0, 1, -36, -98, 106, 82, -119, 88, 1, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55]]
DEBUG:2013-10-25T12:39:56.231:slicer_upper_dpid=00:00:00:00:00:00:00:04:: recv from controller: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=1, length=8, type=OUTPUT];port=1, command=0, cookie=0, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=3,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.231:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:56.231:slicer_upper_dpid=00:00:00:00:00:00:00:04:: recv from controller: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=1, length=8, type=OUTPUT];port=1, command=0, cookie=0, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=3,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.231:none:: translateCookie newCookie:259
DEBUG:2013-10-25T12:39:56.231:none:: dpid: 4 match: OFMatch[in_port=3,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0]
DEBUG:2013-10-25T12:39:56.232:none:: OFMatch[in_port=3,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0]
DEBUG:2013-10-25T12:39:56.232:none:: Rule ids which intersect: {5}
DEBUG:2013-10-25T12:39:56.232:none:: Rule ids which intersect: {5}
DEBUG:2013-10-25T12:39:56.232:none:: Setting input port
DEBUG:2013-10-25T12:39:56.232:none:: Rule ids which intersect: {5}
DEBUG:2013-10-25T12:39:56.232:none:: Rule ids which intersect: {5}
DEBUG:2013-10-25T12:39:56.232:none:: Rule ids which intersect: {5}
DEBUG:2013-10-25T12:39:56.233:none:: Rule ids which intersect: {5}
DEBUG:2013-10-25T12:39:56.233:none:: Rule ids which intersect: {5}
DEBUG:2013-10-25T12:39:56.242:none:: Rule ids which intersect: {5}
DEBUG:2013-10-25T12:39:56.242:none:: Rule ids which intersect: {5}
DEBUG:2013-10-25T12:39:56.242:none:: Rule ids which intersect: {5}
DEBUG:2013-10-25T12:39:56.242:none:: Intersections: {5=FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:04],ruleMatch=[OFMatch[in_port=3,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0]],actionsList=[Slice:upper=7],id=[5],priority=[1],]]}
DEBUG:2013-10-25T12:39:56.243:none:: intersect: FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:04],ruleMatch=[OFMatch[in_port=3,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0]],actionsList=[Slice:upper=7],id=[5],priority=[1],]]
WARN:2013-10-25T12:39:56.243:slicer_upper_dpid=00:00:00:00:00:00:00:04:: Verifying Slice is not over its flow rule limit
DEBUG:2013-10-25T12:39:56.243:classifier-dpid=00:00:00:00:00:00:00:04:: Overall limit is -1 current value is 1
DEBUG:2013-10-25T12:39:56.243:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:FVFlowMod [ actions=OFActionOutput [maxLength=0, port=1, length=8, type=OUTPUT];port=1, command=0, cookie=259, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=3,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.243:slicer_upper_dpid=00:00:00:00:00:00:00:04:: expanded fm 1 times: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=1, length=8, type=OUTPUT];port=1, command=0, cookie=259, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=3,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
ALERT:2013-10-25T12:39:56.243:slicer_upper_dpid=00:00:00:00:00:00:00:04:: STARVING: handling event took 13ms: org.flowvisor.events.FVIOEvent@1466446
DEBUG:2013-10-25T12:39:56.245:classifier-dpid=00:00:00:00:00:00:00:02:: received from switch: FVPacketIn [reason=NO_MATCH, inPort=2, packetData=[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 8, 0, 69, 0, 0, 84, 84, -20, 0, 0, 64, 1, 17, -70, 10, 0, 0, 3, 10, 0, 0, 1, 0, 0, 44, 53, 23, 125, 0, 1, -36, -98, 106, 82, -119, 88, 1, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55]]
DEBUG:2013-10-25T12:39:56.247:none:: inside handleLLDPFromSwitch in LLDPUtil
DEBUG:2013-10-25T12:39:56.248:none:: Checking if the pkt is LLDP?2048
DEBUG:2013-10-25T12:39:56.248:none:: The pkt is not LLDP
DEBUG:2013-10-25T12:39:56.248:none:: dpid: 2match: OFMatch[in_port=2,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0]
DEBUG:2013-10-25T12:39:56.258:none:: allRules: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
DEBUG:2013-10-25T12:39:56.265:slicer_upper_dpid=00:00:00:00:00:00:00:02:: allowing bufferID: 257
DEBUG:2013-10-25T12:39:56.266:slicer_upper_dpid=00:00:00:00:00:00:00:02:: send to controller: FVPacketIn [reason=NO_MATCH, inPort=2, packetData=[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 8, 0, 69, 0, 0, 84, 84, -20, 0, 0, 64, 1, 17, -70, 10, 0, 0, 3, 10, 0, 0, 1, 0, 0, 44, 53, 23, 125, 0, 1, -36, -98, 106, 82, -119, 88, 1, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55]]
ALERT:2013-10-25T12:39:56.266:classifier-dpid=00:00:00:00:00:00:00:02:: STARVING: handling event took 21ms: org.flowvisor.events.FVIOEvent@616ee4
DEBUG:2013-10-25T12:39:56.266:slicer_upper_dpid=00:00:00:00:00:00:00:04:: recv from controller: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=2, length=8, type=OUTPUT];port=2, command=0, cookie=0, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=3,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.266:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:56.266:slicer_upper_dpid=00:00:00:00:00:00:00:04:: recv from controller: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=2, length=8, type=OUTPUT];port=2, command=0, cookie=0, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=3,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.267:none:: translateCookie newCookie:260
WARN:2013-10-25T12:39:56.267:slicer_upper_dpid=00:00:00:00:00:00:00:04:: EPERM bad actions: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=2, length=8, type=OUTPUT];port=2, command=0, cookie=260, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=3,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.267:slicer_upper_dpid=00:00:00:00:00:00:00:04:: send to controller: c=4;t=2;msg=FVFlowMod [ actions=OFActionOutput [maxLength=0, port=2, length=8, type=OUTPUT];port=2, command=0, cookie=260, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=3,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1];err=[80]
DEBUG:2013-10-25T12:39:56.269:slicer_upper_dpid=00:00:00:00:00:00:00:02:: recv from controller: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=1, length=8, type=OUTPUT];port=1, command=0, cookie=0, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=2,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.269:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:56.269:slicer_upper_dpid=00:00:00:00:00:00:00:02:: recv from controller: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=1, length=8, type=OUTPUT];port=1, command=0, cookie=0, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=2,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.269:none:: translateCookie newCookie:258
DEBUG:2013-10-25T12:39:56.270:none:: dpid: 2 match: OFMatch[in_port=2,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0]
DEBUG:2013-10-25T12:39:56.270:none:: OFMatch[in_port=2,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0]
DEBUG:2013-10-25T12:39:56.270:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:56.270:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:56.270:none:: Setting input port
DEBUG:2013-10-25T12:39:56.270:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:56.270:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:56.270:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:56.270:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:56.271:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:56.271:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:56.271:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:56.271:none:: Rule ids which intersect: {3}
DEBUG:2013-10-25T12:39:56.271:none:: Intersections: {3=FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:02],ruleMatch=[OFMatch[in_port=2,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0]],actionsList=[Slice:upper=7],id=[3],priority=[1],]]}
DEBUG:2013-10-25T12:39:56.271:none:: intersect: FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:02],ruleMatch=[OFMatch[in_port=2,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0]],actionsList=[Slice:upper=7],id=[3],priority=[1],]]
WARN:2013-10-25T12:39:56.272:slicer_upper_dpid=00:00:00:00:00:00:00:02:: Verifying Slice is not over its flow rule limit
DEBUG:2013-10-25T12:39:56.272:classifier-dpid=00:00:00:00:00:00:00:02:: Overall limit is -1 current value is 1
DEBUG:2013-10-25T12:39:56.272:classifier-dpid=00:00:00:00:00:00:00:02:: send to switch:FVFlowMod [ actions=OFActionOutput [maxLength=0, port=1, length=8, type=OUTPUT];port=1, command=0, cookie=258, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=2,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.272:slicer_upper_dpid=00:00:00:00:00:00:00:02:: expanded fm 1 times: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=1, length=8, type=OUTPUT];port=1, command=0, cookie=258, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=2,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.282:classifier-dpid=00:00:00:00:00:00:00:01:: received from switch: FVPacketIn [reason=NO_MATCH, inPort=1, packetData=[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 8, 0, 69, 0, 0, 84, 84, -20, 0, 0, 64, 1, 17, -70, 10, 0, 0, 3, 10, 0, 0, 1, 0, 0, 44, 53, 23, 125, 0, 1, -36, -98, 106, 82, -119, 88, 1, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55]]
DEBUG:2013-10-25T12:39:56.282:none:: inside handleLLDPFromSwitch in LLDPUtil
DEBUG:2013-10-25T12:39:56.283:none:: Checking if the pkt is LLDP?2048
DEBUG:2013-10-25T12:39:56.283:none:: The pkt is not LLDP
DEBUG:2013-10-25T12:39:56.283:none:: dpid: 1match: OFMatch[in_port=1,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0]
DEBUG:2013-10-25T12:39:56.283:none:: allRules: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
DEBUG:2013-10-25T12:39:56.283:slicer_upper_dpid=00:00:00:00:00:00:00:01:: allowing bufferID: 257
DEBUG:2013-10-25T12:39:56.283:slicer_upper_dpid=00:00:00:00:00:00:00:01:: send to controller: FVPacketIn [reason=NO_MATCH, inPort=1, packetData=[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 8, 0, 69, 0, 0, 84, 84, -20, 0, 0, 64, 1, 17, -70, 10, 0, 0, 3, 10, 0, 0, 1, 0, 0, 44, 53, 23, 125, 0, 1, -36, -98, 106, 82, -119, 88, 1, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55]]
DEBUG:2013-10-25T12:39:56.285:slicer_upper_dpid=00:00:00:00:00:00:00:01:: recv from controller: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=3, length=8, type=OUTPUT];port=3, command=0, cookie=0, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=1,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.286:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:56.286:slicer_upper_dpid=00:00:00:00:00:00:00:01:: recv from controller: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=3, length=8, type=OUTPUT];port=3, command=0, cookie=0, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=1,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.286:none:: translateCookie newCookie:260
DEBUG:2013-10-25T12:39:56.286:none:: dpid: 1 match: OFMatch[in_port=1,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0]
DEBUG:2013-10-25T12:39:56.286:none:: OFMatch[in_port=1,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0]
DEBUG:2013-10-25T12:39:56.286:none:: Rule ids which intersect: {1}
DEBUG:2013-10-25T12:39:56.286:none:: Rule ids which intersect: {1}
DEBUG:2013-10-25T12:39:56.287:none:: Setting input port
DEBUG:2013-10-25T12:39:56.287:none:: Rule ids which intersect: {1}
DEBUG:2013-10-25T12:39:56.287:none:: Rule ids which intersect: {1}
DEBUG:2013-10-25T12:39:56.287:none:: Rule ids which intersect: {1}
DEBUG:2013-10-25T12:39:56.287:none:: Rule ids which intersect: {1}
DEBUG:2013-10-25T12:39:56.287:none:: Rule ids which intersect: {1}
DEBUG:2013-10-25T12:39:56.287:none:: Rule ids which intersect: {1}
DEBUG:2013-10-25T12:39:56.287:none:: Rule ids which intersect: {1}
DEBUG:2013-10-25T12:39:56.288:none:: Rule ids which intersect: {1}
DEBUG:2013-10-25T12:39:56.288:none:: Intersections: {1=FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:01],ruleMatch=[OFMatch[in_port=1,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0]],actionsList=[Slice:upper=7],id=[1],priority=[1],]]}
DEBUG:2013-10-25T12:39:56.293:none:: intersect: FlowIntersect[matchType=UNKNOWN,flowEntry=FlowEntry[dpid=[00:00:00:00:00:00:00:01],ruleMatch=[OFMatch[in_port=1,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0]],actionsList=[Slice:upper=7],id=[1],priority=[1],]]
WARN:2013-10-25T12:39:56.294:slicer_upper_dpid=00:00:00:00:00:00:00:01:: Verifying Slice is not over its flow rule limit
DEBUG:2013-10-25T12:39:56.294:classifier-dpid=00:00:00:00:00:00:00:01:: Overall limit is -1 current value is 1
DEBUG:2013-10-25T12:39:56.294:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:FVFlowMod [ actions=OFActionOutput [maxLength=0, port=3, length=8, type=OUTPUT];port=3, command=0, cookie=260, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=1,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:56.294:slicer_upper_dpid=00:00:00:00:00:00:00:01:: expanded fm 1 times: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=3, length=8, type=OUTPUT];port=3, command=0, cookie=260, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=1,dl_dst=00:00:00:00:00:01,dl_src=00:00:00:00:00:03,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.1,nw_src=10.0.0.3,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=0], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:57.943:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:57.945:classifier-dpid=00:00:00:00:00:00:00:04:: received from switch: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:58.307:classifier-dpid=00:00:00:00:00:00:00:01:: received from switch: FVPacketIn [reason=NO_MATCH, inPort=3, packetData=[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 8, 0, 69, 0, 0, 84, 0, 0, 64, 0, 64, 1, 38, -89, 10, 0, 0, 1, 10, 0, 0, 2, 8, 0, 3, -34, 23, -128, 0, 1, -34, -98, 106, 82, -92, -84, 4, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55]]
DEBUG:2013-10-25T12:39:58.307:none:: inside handleLLDPFromSwitch in LLDPUtil
DEBUG:2013-10-25T12:39:58.308:none:: Checking if the pkt is LLDP?2048
DEBUG:2013-10-25T12:39:58.308:none:: The pkt is not LLDP
DEBUG:2013-10-25T12:39:58.308:none:: dpid: 1match: OFMatch[in_port=3,dl_dst=00:00:00:00:00:02,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=65535,dl_vpcp=0,nw_dst=10.0.0.2,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8]
DEBUG:2013-10-25T12:39:58.308:none:: allRules: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
DEBUG:2013-10-25T12:39:58.308:slicer_upper_dpid=00:00:00:00:00:00:00:01:: allowing bufferID: 258
DEBUG:2013-10-25T12:39:58.308:slicer_upper_dpid=00:00:00:00:00:00:00:01:: send to controller: FVPacketIn [reason=NO_MATCH, inPort=3, packetData=[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 8, 0, 69, 0, 0, 84, 0, 0, 64, 0, 64, 1, 38, -89, 10, 0, 0, 1, 10, 0, 0, 2, 8, 0, 3, -34, 23, -128, 0, 1, -34, -98, 106, 82, -92, -84, 4, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55]]
DEBUG:2013-10-25T12:39:58.310:slicer_upper_dpid=00:00:00:00:00:00:00:01:: recv from controller: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=4, length=8, type=OUTPUT];port=4, command=0, cookie=0, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=3,dl_dst=00:00:00:00:00:02,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.2,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:58.310:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:58.310:slicer_upper_dpid=00:00:00:00:00:00:00:01:: recv from controller: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=4, length=8, type=OUTPUT];port=4, command=0, cookie=0, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=3,dl_dst=00:00:00:00:00:02,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.2,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:58.311:none:: translateCookie newCookie:261
WARN:2013-10-25T12:39:58.311:slicer_upper_dpid=00:00:00:00:00:00:00:01:: EPERM bad actions: FVFlowMod [ actions=OFActionOutput [maxLength=0, port=4, length=8, type=OUTPUT];port=4, command=0, cookie=261, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=3,dl_dst=00:00:00:00:00:02,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.2,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1]
DEBUG:2013-10-25T12:39:58.311:slicer_upper_dpid=00:00:00:00:00:00:00:01:: send to controller: c=4;t=2;msg=FVFlowMod [ actions=OFActionOutput [maxLength=0, port=4, length=8, type=OUTPUT];port=4, command=0, cookie=261, flags=0, hardTimeout=0, idleTimeout=5, match=OFMatch[in_port=3,dl_dst=00:00:00:00:00:02,dl_src=00:00:00:00:00:01,dl_type=0x800,dl_vlan=0xffff,dl_vpcp=0,nw_dst=10.0.0.2,nw_src=10.0.0.1,nw_proto=1,nw_tos=0,tp_dst=0,tp_src=8], outPort=0, priority=0, length=80, type=FLOW_MOD, version=1];err=[80]
DEBUG:2013-10-25T12:39:58.450:slicer_upper_dpid=00:00:00:00:00:00:00:04:: send to controller: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:58.451:slicer_upper_dpid=00:00:00:00:00:00:00:04:: recv from controller: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:58.451:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:58.620:slicer_lower_dpid=00:00:00:00:00:00:00:04:: send to controller: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:58.622:slicer_lower_dpid=00:00:00:00:00:00:00:04:: recv from controller: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:58.623:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:59.336:classifier-dpid=00:00:00:00:00:00:00:03:: received from switch: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:59.336:classifier-dpid=00:00:00:00:00:00:00:03:: send to switch:FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:59.352:classifier-dpid=00:00:00:00:00:00:00:02:: send to switch:FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:59.354:classifier-dpid=00:00:00:00:00:00:00:02:: received from switch: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:59.408:slicer_upper_dpid=00:00:00:00:00:00:00:02:: send to controller: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:59.409:slicer_upper_dpid=00:00:00:00:00:00:00:02:: recv from controller: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:59.409:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:59.443:classifier-dpid=00:00:00:00:00:00:00:01:: send to switch:FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:59.445:classifier-dpid=00:00:00:00:00:00:00:01:: received from switch: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:59.533:slicer_upper_dpid=00:00:00:00:00:00:00:01:: send to controller: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:59.534:slicer_upper_dpid=00:00:00:00:00:00:00:01:: recv from controller: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:59.534:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:59.597:slicer_lower_dpid=00:00:00:00:00:00:00:01:: send to controller: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:59.600:slicer_lower_dpid=00:00:00:00:00:00:00:01:: recv from controller: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:59.600:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:39:59.617:classifier-dpid=00:00:00:00:00:00:00:03:: send to switch:FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:59.618:classifier-dpid=00:00:00:00:00:00:00:03:: received from switch: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:59.691:slicer_lower_dpid=00:00:00:00:00:00:00:03:: send to controller: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:39:59.692:slicer_lower_dpid=00:00:00:00:00:00:00:03:: recv from controller: FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:39:59.692:none:: Refilled 200 bucket has 200
DEBUG:2013-10-25T12:40:02.337:classifier-dpid=00:00:00:00:00:00:00:04:: received from switch: FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:40:02.339:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:FVEchoReply [ payload=null]
DEBUG:2013-10-25T12:40:02.945:classifier-dpid=00:00:00:00:00:00:00:04:: send to switch:FVEchoRequest [ payload=null]
DEBUG:2013-10-25T12:40:02.946:classifier-dpid=00:00:00:00:00:00:00:04:: received from switch: FVEchoReply [ payload=null]