1
0
mirror of https://github.com/solemnwarning/ipxwrapper synced 2024-12-30 16:45:37 +01:00
ipxwrapper/tests/config.pm
Daniel Collins 5ff0855485 Replace test suite.
Dump most of the old "unit" tests which were more system tests and only tested
a small amount of functionality against the host.

The new test suite is a lot more thorough and tests an arbitrary Windows version
over the network rather than testing within the host's WinSock environment.

More documentation detailing how to run this will follow.
2014-10-04 14:46:11 +01:00

28 lines
564 B
Perl

use strict;
use warnings;
# Local device names, MAC and IP addresses.
our $local_dev_a = "eth1";
our $local_mac_a = "08:00:27:52:5F:9E";
our $local_ip_a = "172.16.1.11";
our $local_dev_b = "eth2";
our $local_mac_b = "08:00:27:F5:BE:4C";
our $local_ip_b = "172.16.2.11";
# Remote MAC and IP addresses.
our $remote_mac_a = "08:00:27:C3:6A:E6";
our $remote_ip_a = "172.16.1.21";
our $remote_mac_b = "08:00:27:43:47:5C";
our $remote_ip_b = "172.16.2.21";
# Network broadcast IPs.
our $net_a_bcast = "172.16.1.255";
our $net_b_bcast = "172.16.2.255";
1;