OvS Flow Table 크기 변경
# 플로우 테이블이 가득차면 그외의 Flow는 버리는 명령어
$ sudo ovs-vsctl -- --id=@ft create Flow_Table flow_limit=10 overflow_policy=refuse -- set Bridge s1 flow_tables=0=@ft
# 플로우 테이블이 가득차면 새로들어오는 Flow를 위해 제일 처음 들어오는 Flow삭제하고 새로들어온 Flow 추가
$ sudo ovs-vsctl -- --id=@ft create Flow_Table flow_limit=10 overflow_policy=evict grups='"NXM_OF_IN_PORT[]"' -- set Bridge s1 flow_tables:0=@ft
'Network > ONOS' 카테고리의 다른 글
ONOS OnePing 예제 코드 (0) | 2022.08.29 |
---|---|
ONOS 시간에 따른 경로 변환 코드 (0) | 2022.08.29 |
ONOS 플로우 수에 대한 경로 변환 코드 (0) | 2022.08.29 |
ONOS 1.14 Install (0) | 2022.08.29 |
ONOS 1.15 Install (0) | 2022.08.29 |