mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 15:02:25 +00:00
8a279855ff
Fixes #4983
31 lines
809 B
Plaintext
31 lines
809 B
Plaintext
<runtime ram="10M" caps="300" binary="nic_router">
|
|
|
|
<requires> <nic/> </requires>
|
|
<provides> <nic/> </provides>
|
|
|
|
<config verbose_domain_state="yes">
|
|
<default-policy domain="default" />
|
|
<nic-client domain="uplink" />
|
|
<domain name="uplink">
|
|
<nat domain="default"
|
|
tcp-ports="1000"
|
|
udp-ports="1000"
|
|
icmp-ids="1000"/>
|
|
</domain>
|
|
<domain name="default" interface="10.0.1.1/24">
|
|
<dhcp-server ip_first="10.0.1.2"
|
|
ip_last="10.0.1.200"
|
|
dns_config_from="uplink"/>
|
|
<tcp dst="0.0.0.0/0"><permit-any domain="uplink"/></tcp>
|
|
<udp dst="0.0.0.0/0"><permit-any domain="uplink"/></udp>
|
|
<icmp dst="0.0.0.0/0" domain="uplink"/>
|
|
</domain>
|
|
</config>
|
|
|
|
<content>
|
|
<rom label="ld.lib.so"/>
|
|
<rom label="nic_router"/>
|
|
</content>
|
|
|
|
</runtime>
|