From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephan Feddersen To: development@lists.ipfire.org Subject: [PATCH] WIO: wio.cgi edit how to get the ips for the networks Date: Tue, 15 Aug 2017 15:17:35 +0200 Message-ID: <1502803055-18669-1-git-send-email-sfeddersen@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5095590169518961627==" List-Id: --===============5095590169518961627== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable --- lfs/wio | 2 +- src/wio/lang/wio.de.pl | 1 + src/wio/lang/wio.en.pl | 1 + src/wio/wio.cgi | 19 +++++-------------- 4 files changed, 8 insertions(+), 15 deletions(-) diff --git a/lfs/wio b/lfs/wio index a3c00d9..25726cd 100644 --- a/lfs/wio +++ b/lfs/wio @@ -15,7 +15,7 @@ THISAPP =3D wio-$(VER) DIR_APP =3D $(DIR_SRC)/$(THISAPP) TARGET =3D $(DIR_INFO)/$(THISAPP) PROG =3D wio -PAK_VER =3D 1 +PAK_VER =3D 2 =20 ############################################################################= ### # Top-level Rules diff --git a/src/wio/lang/wio.de.pl b/src/wio/lang/wio.de.pl index 430284e..fd82ff0 100644 --- a/src/wio/lang/wio.de.pl +++ b/src/wio/lang/wio.de.pl @@ -97,6 +97,7 @@ 'wio_iface' =3D> 'Schnittstelle', 'wio_client_enable' =3D> 'Client aktivieren?', 'wio_ping_send' =3D> '=C3=BCberpr=C3=BCfen per', +'wio_link_open' =3D> 'Link =C3=B6ffnen per', 'enable disable client' =3D> 'Client aktivieren oder deaktivieren', 'wio_client_on' =3D> '=C3=9Cberwachung aktiviert (klicken, um zu deaktiviere= n)', 'wio_client_off' =3D> '=C3=9Cberwachung deaktiviert (klicken, um zu aktivier= en)', diff --git a/src/wio/lang/wio.en.pl b/src/wio/lang/wio.en.pl index 17312a7..52793b9 100644 --- a/src/wio/lang/wio.en.pl +++ b/src/wio/lang/wio.en.pl @@ -97,6 +97,7 @@ 'wio_iface' =3D> 'Interface', 'wio_client_enable' =3D> 'enable Host ?', 'wio_ping_send' =3D> 'send ping to', +'wio_link_open' =3D> 'open link via', 'enable disable client' =3D> 'enable or disable client', 'wio_client_on' =3D> 'Client enabled (click to disable)', 'wio_client_off' =3D> 'Client disabled (click to enable)', diff --git a/src/wio/wio.cgi b/src/wio/wio.cgi index 631e468..aa471e6 100644 --- a/src/wio/wio.cgi +++ b/src/wio/wio.cgi @@ -47,6 +47,7 @@ use Fatal qw/ open /; use Net::Telnet; =20 require '/var/ipfire/general-functions.pl'; +require '/var/ipfire/network-functions.pl'; require '/var/ipfire/lang.pl'; require '/var/ipfire/header.pl'; require '/usr/lib/wio/wio-lib.pl'; @@ -166,18 +167,8 @@ if ( -e $wiofile ) { goto WIOSCAN; } ## get network ips foreach (@devs_color) { if ( $netsettings{"${_}_DEV"} ne '' ) { - - $wiosettings{"${_}_IPLOW"} =3D inet_ntoa pack q/N/, (unpack (q/N/, inet_at= on ($netsettings{"${_}_NETADDRESS"}))+1); - my @addrarr =3D split(/\./,$netsettings{"${_}_ADDRESS"}); - my $ipaddress =3D unpack( "N", pack( "C4",@addrarr ) ); - - my @maskarr =3D split(/\./,$netsettings{"${_}_NETMASK"}); - my $netmask =3D unpack( "N", pack( "C4",@maskarr ) ); - - my $bcast =3D ( $ipaddress & $netmask ) + ( ~ $netmask ); - my @bcastarr =3D inet_ntoa pack q/N/, (unpack (q/N/, inet_aton ($bcast))-1= ); - - $wiosettings{"${_}_IPHIGH"} =3D join(".",@bcastarr); + $wiosettings{"${_}_IPLOW"} =3D &Network::find_next_ip_address($netsettings= {"${_}_NETADDRESS"}, 1); + $wiosettings{"${_}_IPHIGH"} =3D &Network::find_next_ip_address($netsetting= s{"${_}_BROADCAST"}, -1); } } =20 @@ -712,7 +703,7 @@ else { print" - $Lang::tr{'wio_ping_send'}: + $Lang::tr{'wio_link_open'}: ---- --=20 2.7.4 --===============5095590169518961627==--