소스 검색

ovs advanced options

tags/2016.12
Jakub Pavlik 8 년 전
부모
커밋
02e681ce7f
1개의 변경된 파일8개의 추가작업 그리고 1개의 파일을 삭제
  1. +8
    -1
      linux/files/ovs_port

+ 8
- 1
linux/files/ovs_port 파일 보기

@@ -1,6 +1,13 @@
auto {{ port_name }}
allow-{{ port.bridge }} {{ port_name }}
iface {{ port_name }} inet manual
iface {{ port_name }} inet {{ port.get('proto', 'manual') }}
ovs_type OVSIntPort
mtu {{ port.get('mtu', '1500') }}
ovs_bridge {{ port.bridge }}
{%- if port.get('proto', 'manual') == 'static' %}
address {{ port.address }}
netmask {{ port.netmask }}
{%- endif %}
{%- if port.ovs_options is defined %}
ovs_options {{ port.ovs_options }}
{%- endif %}

Loading…
취소
저장