Do stricter checking of IP addressed passed to server install.

ticket 1213
This commit is contained in:
Jan Cholasta
2011-05-30 13:38:46 +02:00
committed by Martin Kosek
parent db78f36235
commit fd639bc88c
2 changed files with 20 additions and 0 deletions
+9
View File
@@ -42,12 +42,21 @@ def test_ip_address():
('10.11.12.1337',),
('10.11.12.13/33',),
('127.0.0.1',),
('241.1.2.3',),
('169.254.1.2',),
('10.11.12.0/24',),
('224.5.6.7',),
('10.11.12.255/24',),
('2001::1', (0x2001, 0, 0, 0, 0, 0, 0, 1), 64),
('2001::1/72', (0x2001, 0, 0, 0, 0, 0, 0, 1), 72),
('2001::1beef',),
('2001::1/129',),
('::1',),
('6789::1',),
('fe89::1',),
('2001::/64',),
('ff01::1',),
('junk',)
]