Adaptation to stricter label prefixing

This patch is related to the following issue:

https://github.com/genodelabs/genode/issues/2171
This commit is contained in:
Norman Feske
2016-11-24 17:10:16 +01:00
parent f428df2dee
commit 21bf74bbc8
8 changed files with 27 additions and 27 deletions

View File

@@ -72,11 +72,11 @@ append config {
<config rtt_sec="3">
<policy label="uplink" src="10.1.1.2"/>
<policy label="tor" src="10.1.2.1" nat="yes" nat-tcp-ports="100">
<policy label_prefix="tor" src="10.1.2.1" nat="yes" nat-tcp-ports="100">
<ip dst="0.0.0.0/0" label="uplink" via="10.1.1.1"/>
</policy>
<policy label="web-client -> fetchurl" src="10.1.3.1" nat="yes" nat-tcp-ports="100">
<policy label_prefix="web-client -> fetchurl" src="10.1.3.1" nat="yes" nat-tcp-ports="100">
<ip dst="10.1.3.1/32">
<tcp dst="9050" label="tor" to="10.1.2.2"/>
</ip>
@@ -101,8 +101,8 @@ SOCKSPort 10.1.2.2:9050
DataDirectory /tor
</inline></dir>
</content>
<policy label="tor -> data" root="/data" writeable="yes"/>
<policy label="tor -> conf" root="/conf" writeable="no"/>
<policy label_prefix="tor -> data" root="/data" writeable="yes"/>
<policy label_prefix="tor -> conf" root="/conf" writeable="no"/>
</config>
</start>