mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-12 15:52:55 +00:00
8afd34f2d8
Back in commit bd6c46fa0cfe275c24debc1152cfc5206c04b59b Author: Juerg Haefliger <juerg.haefliger@hp.com> Date: Mon Jan 31 06:42:57 2011 -0500 tests: handle backspace-newline pairs in test input files all the test argv files were line wrapped so that the args were less than 80 characters. The way the line wrapping was done turns out to be quite undesirable, because it often leaves multiple parameters on the same line. If we later need to add or remove individual parameters, then it leaves us having to redo line wrapping. This commit changes the line wrapping so that every single "-param value" is one its own new line. If the "value" is still too long, then we break on ',' or ':' or ' ' as needed. This means that when we come to add / remove parameters from the test files line, the patch diffs will only ever show a single line added/removed which will greatly simplify review work. Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
202 lines
3.6 KiB
Plaintext
202 lines
3.6 KiB
Plaintext
ebtables \
|
|
-t nat \
|
|
-A libvirt-P-vnet0 \
|
|
-p 0x1234 \
|
|
-j ACCEPT
|
|
ebtables \
|
|
-t nat \
|
|
-A libvirt-J-vnet0 \
|
|
-s 01:02:03:04:05:06/ff:ff:ff:ff:ff:ff \
|
|
-d aa:bb:cc:dd:ee:ff/ff:ff:ff:ff:ff:ff \
|
|
-p ipv4 \
|
|
--ip-source 10.1.2.3/32 \
|
|
--ip-destination 10.1.2.3/32 \
|
|
--ip-protocol 17 \
|
|
--ip-source-port 291:564 \
|
|
--ip-destination-port 13398:17767 \
|
|
--ip-tos 0x32 \
|
|
-j ACCEPT
|
|
ebtables \
|
|
-t nat \
|
|
-A libvirt-J-vnet0 \
|
|
-s 01:02:03:04:05:06/ff:ff:ff:ff:ff:fe \
|
|
-d aa:bb:cc:dd:ee:ff/ff:ff:ff:ff:ff:80 \
|
|
-p ipv6 \
|
|
--ip6-source ::10.1.2.3/22 \
|
|
--ip6-destination ::10.1.2.3/113 \
|
|
--ip6-protocol 6 \
|
|
--ip6-source-port 273:400 \
|
|
--ip6-destination-port 13107:65535 \
|
|
-j ACCEPT
|
|
ebtables \
|
|
-t nat \
|
|
-A libvirt-J-vnet0 \
|
|
-s 01:02:03:04:05:06/ff:ff:ff:ff:ff:ff \
|
|
-d aa:bb:cc:dd:ee:ff/ff:ff:ff:ff:ff:ff \
|
|
-p 0x806 \
|
|
--arp-htype 18 \
|
|
--arp-opcode 1 \
|
|
--arp-ptype 0x56 \
|
|
--arp-mac-src 01:02:03:04:05:06 \
|
|
--arp-mac-dst 0a:0b:0c:0d:0e:0f \
|
|
-j ACCEPT
|
|
iptables \
|
|
-A FJ-vnet0 \
|
|
-p udp \
|
|
-m mac \
|
|
--mac-source 01:02:03:04:05:06 \
|
|
--destination 10.1.2.3/32 \
|
|
-m dscp \
|
|
--dscp 34 \
|
|
--sport 291:400 \
|
|
--dport 564:1092 \
|
|
-m state \
|
|
--state NEW,ESTABLISHED \
|
|
-m comment \
|
|
--comment 'udp rule' \
|
|
-j RETURN
|
|
iptables \
|
|
-A FP-vnet0 \
|
|
-p udp \
|
|
--source 10.1.2.3/32 \
|
|
-m dscp \
|
|
--dscp 34 \
|
|
--dport 291:400 \
|
|
--sport 564:1092 \
|
|
-m state \
|
|
--state ESTABLISHED \
|
|
-m comment \
|
|
--comment 'udp rule' \
|
|
-j ACCEPT
|
|
iptables \
|
|
-A HJ-vnet0 \
|
|
-p udp \
|
|
-m mac \
|
|
--mac-source 01:02:03:04:05:06 \
|
|
--destination 10.1.2.3/32 \
|
|
-m dscp \
|
|
--dscp 34 \
|
|
--sport 291:400 \
|
|
--dport 564:1092 \
|
|
-m state \
|
|
--state NEW,ESTABLISHED \
|
|
-m comment \
|
|
--comment 'udp rule' \
|
|
-j RETURN
|
|
ip6tables \
|
|
-A FJ-vnet0 \
|
|
-p tcp \
|
|
--destination a:b:c::/128 \
|
|
-m dscp \
|
|
--dscp 57 \
|
|
--dport 32:33 \
|
|
--sport 256:4369 \
|
|
-m state \
|
|
--state ESTABLISHED \
|
|
-m comment \
|
|
--comment 'tcp/ipv6 rule' \
|
|
-j RETURN
|
|
ip6tables \
|
|
-A FP-vnet0 \
|
|
-p tcp \
|
|
-m mac \
|
|
--mac-source 01:02:03:04:05:06 \
|
|
--source a:b:c::/128 \
|
|
-m dscp \
|
|
--dscp 57 \
|
|
--sport 32:33 \
|
|
--dport 256:4369 \
|
|
-m state \
|
|
--state NEW,ESTABLISHED \
|
|
-m comment \
|
|
--comment 'tcp/ipv6 rule' \
|
|
-j ACCEPT
|
|
ip6tables \
|
|
-A HJ-vnet0 \
|
|
-p tcp \
|
|
--destination a:b:c::/128 \
|
|
-m dscp \
|
|
--dscp 57 \
|
|
--dport 32:33 \
|
|
--sport 256:4369 \
|
|
-m state \
|
|
--state ESTABLISHED \
|
|
-m comment \
|
|
--comment 'tcp/ipv6 rule' \
|
|
-j RETURN
|
|
ip6tables \
|
|
-A FJ-vnet0 \
|
|
-p udp \
|
|
-m state \
|
|
--state ESTABLISHED \
|
|
-m comment \
|
|
--comment '`ls`;${COLUMNS};$(ls);"test";&'\''3 spaces'\''' \
|
|
-j RETURN
|
|
ip6tables \
|
|
-A FP-vnet0 \
|
|
-p udp \
|
|
-m state \
|
|
--state NEW,ESTABLISHED \
|
|
-m comment \
|
|
--comment '`ls`;${COLUMNS};$(ls);"test";&'\''3 spaces'\''' \
|
|
-j ACCEPT
|
|
ip6tables \
|
|
-A HJ-vnet0 \
|
|
-p udp \
|
|
-m state \
|
|
--state ESTABLISHED \
|
|
-m comment \
|
|
--comment '`ls`;${COLUMNS};$(ls);"test";&'\''3 spaces'\''' \
|
|
-j RETURN
|
|
ip6tables \
|
|
-A FJ-vnet0 \
|
|
-p sctp \
|
|
-m state \
|
|
--state ESTABLISHED \
|
|
-m comment \
|
|
--comment 'comment with lone '\'', `, ", `, \, $x, and two spaces' \
|
|
-j RETURN
|
|
ip6tables \
|
|
-A FP-vnet0 \
|
|
-p sctp \
|
|
-m state \
|
|
--state NEW,ESTABLISHED \
|
|
-m comment \
|
|
--comment 'comment with lone '\'', `, ", `, \, $x, and two spaces' \
|
|
-j ACCEPT
|
|
ip6tables \
|
|
-A HJ-vnet0 \
|
|
-p sctp \
|
|
-m state \
|
|
--state ESTABLISHED \
|
|
-m comment \
|
|
--comment 'comment with lone '\'', `, ", `, \, $x, and two spaces' \
|
|
-j RETURN
|
|
ip6tables \
|
|
-A FJ-vnet0 \
|
|
-p ah \
|
|
-m state \
|
|
--state ESTABLISHED \
|
|
-m comment \
|
|
--comment 'tmp=`mktemp`; echo ${RANDOM} > ${tmp} ; cat < ${tmp}; rm \
|
|
-f ${tmp}' \
|
|
-j RETURN
|
|
ip6tables \
|
|
-A FP-vnet0 \
|
|
-p ah \
|
|
-m state \
|
|
--state NEW,ESTABLISHED \
|
|
-m comment \
|
|
--comment 'tmp=`mktemp`; echo ${RANDOM} > ${tmp} ; cat < ${tmp}; rm \
|
|
-f ${tmp}' \
|
|
-j ACCEPT
|
|
ip6tables \
|
|
-A HJ-vnet0 \
|
|
-p ah \
|
|
-m state \
|
|
--state ESTABLISHED \
|
|
-m comment \
|
|
--comment 'tmp=`mktemp`; echo ${RANDOM} > ${tmp} ; cat < ${tmp}; rm \
|
|
-f ${tmp}' \
|
|
-j RETURN
|