summary refs log tree commit diff
path: root/nixos/tests/containers-extra_veth.nix
Commit message (Collapse)AuthorAge
* tests/docs: remove remnants of old allowPing default (#49198)Robin Gloster2018-10-30
| | | | | This has been defaulting to true since 16.03, we don't need this code anymore, also the note in the documentation has been obsolete for quite a while.
* [bot] nixos/*: remove unused arguments in lambdasvolth2018-07-20
|
* nixos/tests: rename IP addresses/routes optionsrnhmjoj2018-02-17
|
* replace ping6 with pingJörg Thalheim2017-02-17
| | | | | | | | | reason: after the upgrade of iputils from 20151218 to 20161105 functionality of ping6 and tracepath6 was merged into ping and tracepath. Ping is now mostly a drop-in replacment for ping6, except that selecting a specific interface is done by encoding it into the address (ex.: fe80::1%eth0) rather then specifing it with the `-I` flag.
* containers: add myself to the maintainers of the testsArnold Krille2016-07-28
| | | | Seems like the right thing to do.
* declarative containers: additional vethsArnold Krille2016-07-28
With these changes, a container can have more then one veth-pair. This allows for example to have LAN and DMZ as bridges on the host and add dedicated containers for proxies, ipv4-firewall and ipv6-firewall. Or to have a bridge for normal WAN, one bridge for administration and one bridge for customer-internal communication. So that web-server containers can be reached from outside per http, from the management via ssh and can talk to their database via the customer network. The scripts to set up the containers are now rendered several times instead of just one template. The scripts now contain per-container code to configure the extra veth interfaces. The default template without support for extra-veths is still rendered for the imperative containers. Also a test is there to see if extra veths can be placed into host-bridges or can be reached via routing.