X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=rhel%2FREADME.RHEL;h=26206742505508d24ec625594eb1123c60336db7;hb=HEAD;hp=cb6ab88d5b44e4c57008c0f590543f19d1d22c3b;hpb=1e827902be9194d71ea851c9ce2676f65eeed33a;p=sliver-openvswitch.git diff --git a/rhel/README.RHEL b/rhel/README.RHEL index cb6ab88d5..262067425 100644 --- a/rhel/README.RHEL +++ b/rhel/README.RHEL @@ -25,6 +25,8 @@ assignments. The following OVS-specific variable names are supported: * "OVSTunnel", if is an OVS tunnel. + * "OVSPatchPort", if is a patch port + - OVS_BRIDGE: If TYPE is anything other than "OVSBridge", set to the name of the OVS bridge to which the port should be attached. @@ -47,6 +49,9 @@ assignments. The following OVS-specific variable names are supported: - OVS_TUNNEL_OPTIONS: For "OVSTunnel" interfaces, this field should be used to specify the tunnel options like remote_ip, key, etc. + - OVS_PATCH_PEER: For "OVSPatchPort" devices, this field specifies + the patch's peer on the other bridge. + Note ---- @@ -182,6 +187,26 @@ OVS_BRIDGE=ovsbridge0 OVS_TUNNEL_TYPE=gre OVS_TUNNEL_OPTIONS="options:remote_ip=A.B.C.D" + +Patch Ports: + +==> ifcfg-patch-ovs-0 <== +DEVICE=patch-ovs-0 +ONBOOT=yes +DEVICETYPE=ovs +TYPE=OVSPatchPort +OVS_BRIDGE=ovsbridge0 +OVS_PATCH_PEER=patch-ovs-1 + +==> ifcfg-patch-ovs-1 <== +DEVICE=patch-ovs-1 +ONBOOT=yes +DEVICETYPE=ovs +TYPE=OVSPatchPort +OVS_BRIDGE=ovsbridge1 +OVS_PATCH_PEER=patch-ovs-0 + + Reporting Bugs --------------