1 |
--- smeserver-coova-chilli-0.2/root/etc/e-smith/templates/etc/chilli.conf/25listen.chilli_ip 2008-09-02 13:28:00.000000000 +0200 |
2 |
+++ smeserver-coova-chilli-0.2/root/etc/e-smith/templates/etc/chilli.conf/25listen 2008-09-05 12:00:55.000000000 +0200 |
3 |
@@ -1,16 +1,8 @@ |
4 |
{ |
5 |
# Compute the first IP of the network |
6 |
-my $net = $chilli{'net'} || '10.1.0.0/255.255.255.0'; |
7 |
-my @net = split(/\//,$net); |
8 |
-$net = $net[0]; |
9 |
-my @nums = split(/\./,$net); |
10 |
-my $i = 0; |
11 |
-my $chillip = ''; |
12 |
-foreach (@nums){ |
13 |
- $chillip .= $_."." if ($i ne '3'); |
14 |
- $chillip .= "1" if ($i eq '3'); |
15 |
- $i++; |
16 |
-} |
17 |
+our $net = $chilli{'net'} || '10.1.0.0/255.255.255.0'; |
18 |
+our chillip = NetAddr::IP->new($net) + 1; |
19 |
+$chillip = $net->addr; |
20 |
|
21 |
$OUT = "uamlisten $chillip\n"; |
22 |
|
23 |
--- smeserver-coova-chilli-0.2/root/etc/e-smith/templates/etc/chilli.conf/00setup.chilli_ip 2008-09-05 11:58:45.000000000 +0200 |
24 |
+++ smeserver-coova-chilli-0.2/root/etc/e-smith/templates/etc/chilli.conf/00setup 2008-09-05 11:59:00.000000000 +0200 |
25 |
@@ -0,0 +1,3 @@ |
26 |
+{ |
27 |
+use NetAddr::IP; |
28 |
+} |
29 |
--- smeserver-coova-chilli-0.2/root/etc/e-smith/templates/etc/chilli.conf/55uamserver.chilli_ip 2008-09-02 13:36:44.000000000 +0200 |
30 |
+++ smeserver-coova-chilli-0.2/root/etc/e-smith/templates/etc/chilli.conf/55uamserver 2008-09-05 12:01:30.000000000 +0200 |
31 |
@@ -1,16 +1,4 @@ |
32 |
{ |
33 |
-# Compute the first IP of the network |
34 |
-my $net = $chilli{'net'} || '10.1.0.0/255.255.255.0'; |
35 |
-my @net = split(/\//,$net); |
36 |
-$net = $net[0]; |
37 |
-my @nums = split(/\./,$net); |
38 |
-my $i = 0; |
39 |
-my $chillip = ''; |
40 |
-foreach (@nums){ |
41 |
- $chillip .= $_."." if ($i ne '3'); |
42 |
- $chillip .= "1" if ($i eq '3'); |
43 |
- $i++; |
44 |
-} |
45 |
|
46 |
my $uamsecret = $chilli{'uamsecret'} || 'azerty'; |
47 |
|
48 |
--- smeserver-coova-chilli-0.2/root/etc/e-smith/templates/etc/squid/squid.conf/15HTTPPortChilli.chilli_ip 2008-09-02 13:28:01.000000000 +0200 |
49 |
+++ smeserver-coova-chilli-0.2/root/etc/e-smith/templates/etc/squid/squid.conf/15HTTPPortChilli 2008-09-05 12:02:47.000000000 +0200 |
50 |
@@ -1,18 +1,11 @@ |
51 |
{ |
52 |
+use NetAddr::IP; |
53 |
+my $net = $chilli{'net'} || '10.1.0.0/255.255.255.0'; |
54 |
+my chillip = NetAddr::IP->new($net) + 1; |
55 |
+$chillip = $net->addr; |
56 |
+ |
57 |
$OUT =''; |
58 |
if ($chilli{'status'} eq 'enabled'){ |
59 |
- # Compute the first IP of the network |
60 |
- my $net = $chilli{'net'} || '10.1.0.0/255.255.255.0'; |
61 |
- my @net = split(/\//,$net); |
62 |
- $net = $net[0]; |
63 |
- my @nums = split(/\./,$net); |
64 |
- my $i = 0; |
65 |
- my $chillip = ''; |
66 |
- foreach (@nums){ |
67 |
- $chillip .= $_."." if ($i ne '3'); |
68 |
- $chillip .= "1" if ($i eq '3'); |
69 |
- $i++; |
70 |
- } |
71 |
my $squidport = $squid{'TransparentPort'} || '3128'; |
72 |
$OUT = "http_port $chillip:$squidport\n"; |
73 |
} |