mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-14 21:12:59 +02:00
Merge branch 'next'
This commit is contained in:
@@ -13,6 +13,7 @@
|
||||
/etc/hosts*
|
||||
/etc/httpd/*
|
||||
/etc/ssh/ssh_host*
|
||||
/etc/ssh/sshd_config
|
||||
/etc/logrotate.d
|
||||
/var/ipfire/auth/users
|
||||
/var/ipfire/dhcp/*
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
/srv/web/esniper/.htaccess
|
||||
/srv/web/esniper/.config.php
|
||||
/srv/web/esniper/.config.state.php
|
||||
/srv/web/esniper/local/
|
||||
/srv/web/esniper/.run/
|
||||
@@ -17,6 +17,7 @@ package General;
|
||||
use strict;
|
||||
use Socket;
|
||||
use IO::Socket;
|
||||
use Locale::Codes::Country;
|
||||
use Net::SSLeay;
|
||||
use Net::IPv4Addr qw(:all);
|
||||
$|=1; # line buffering
|
||||
|
||||
105
config/cfgroot/geoip-functions.pl
Normal file
105
config/cfgroot/geoip-functions.pl
Normal file
@@ -0,0 +1,105 @@
|
||||
#!/usr/bin/perl -w
|
||||
############################################################################
|
||||
# #
|
||||
# This file is part of the IPFire Firewall. #
|
||||
# #
|
||||
# IPFire is free software; you can redistribute it and/or modify #
|
||||
# it under the terms of the GNU General Public License as published by #
|
||||
# the Free Software Foundation; either version 2 of the License, or #
|
||||
# (at your option) any later version. #
|
||||
# #
|
||||
# IPFire is distributed in the hope that it will be useful, #
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
||||
# GNU General Public License for more details. #
|
||||
# #
|
||||
# You should have received a copy of the GNU General Public License #
|
||||
# along with IPFire; if not, write to the Free Software #
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
||||
# #
|
||||
# Copyright (C) 2015 IPFire Team <info@ipfire.org>. #
|
||||
# #
|
||||
############################################################################
|
||||
|
||||
package GeoIP;
|
||||
|
||||
use Locale::Codes::Country;
|
||||
|
||||
# Function to get the flag icon for a specified country code.
|
||||
sub get_flag_icon($) {
|
||||
my ($input) = @_;
|
||||
|
||||
# Webserver's root dir. (Required for generating full path)
|
||||
my $webroot = "/srv/web/ipfire/html";
|
||||
|
||||
# Directory which contains the flag icons.
|
||||
my $flagdir = "/images/flags";
|
||||
|
||||
# File extension of the country flags.
|
||||
my $ext = "png";
|
||||
|
||||
# Remove whitespaces.
|
||||
chomp($input);
|
||||
|
||||
# Convert given country code to upper case.
|
||||
my $ccode = uc($input);
|
||||
|
||||
# Generate filename, based on the contry code in lower case
|
||||
# and the defined file extension.
|
||||
my $file = join('.', $ccode,$ext);
|
||||
|
||||
# Generate path inside webroot to the previously generated file.
|
||||
my $flag_icon = join('/', $flagdir,$file);
|
||||
|
||||
# Generate absolute path to the icon file.
|
||||
my $absolute_path = join('', $webroot,$flag_icon);
|
||||
|
||||
# Check if the a icon file exists.
|
||||
if (-e "$absolute_path") {
|
||||
# Return content of flag_icon.
|
||||
return $flag_icon;
|
||||
} else {
|
||||
# If no icon for the specified country exists, try to use
|
||||
# the icon for "unknown".
|
||||
my $ccode = "unknown";
|
||||
|
||||
# Redoing all the stuff from abouve for the "unknown" icon.
|
||||
my $file = join('.', $ccode,$ext);
|
||||
my $flag_icon = join('/', $flagdir,$file);
|
||||
my $absolute_path = join('', $webroot,$flag_icon);
|
||||
|
||||
# Check if the icon is present.
|
||||
if (-e "$absolute_path") {
|
||||
# Return "unknown" icon.
|
||||
return $flag_icon;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# Function to get the county name by a given country code.
|
||||
sub get_full_country_name($) {
|
||||
my ($input) = @_;
|
||||
my $name;
|
||||
|
||||
# Remove whitespaces.
|
||||
chomp($input);
|
||||
|
||||
# Convert input into lower case format.
|
||||
my $code = lc($input);
|
||||
|
||||
# Handle country codes which are not in the list.
|
||||
if ($code eq "a1") { $name = "Anonymous Proxy" }
|
||||
elsif ($code eq "a2") { $name = "Satellite Provider" }
|
||||
elsif ($code eq "o1") { $name = "Other Country" }
|
||||
elsif ($code eq "ap") { $name = "Asia/Pacific Region" }
|
||||
elsif ($code eq "eu") { $name = "Europe" }
|
||||
elsif ($code eq "yu") { $name = "Yugoslavia" }
|
||||
else {
|
||||
# Use perl built-in module to get the country code.
|
||||
$name = &Locale::Codes::Country::code2country($code);
|
||||
}
|
||||
|
||||
return $name;
|
||||
}
|
||||
|
||||
1;
|
||||
@@ -263,7 +263,7 @@ sub getcgihash {
|
||||
return if ($ENV{'REQUEST_METHOD'} ne 'POST');
|
||||
if (!$params->{'wantfile'}) {
|
||||
$CGI::DISABLE_UPLOADS = 1;
|
||||
$CGI::POST_MAX = 512 * 1024;
|
||||
$CGI::POST_MAX = 1024 * 1024;
|
||||
} else {
|
||||
$CGI::POST_MAX = 10 * 1024 * 1024;
|
||||
}
|
||||
|
||||
@@ -57,3 +57,6 @@ HOME=/
|
||||
# Re-read firewall rules every Sunday in March, October and November to take care of daylight saving time
|
||||
00 3 * 3 0 /usr/local/bin/timezone-transition /usr/local/bin/firewallctrl
|
||||
00 2 * 10-11 0 /usr/local/bin/timezone-transition /usr/local/bin/firewallctrl
|
||||
|
||||
# Update GeoIP database once a month.
|
||||
%monthly,random * * * [ -f "/var/ipfire/red/active" ] && /usr/local/bin/xt_geoip_update >/dev/null 2>&1
|
||||
|
||||
61
config/firewall/firewall-lib.pl
Executable file → Normal file
61
config/firewall/firewall-lib.pl
Executable file → Normal file
@@ -27,6 +27,7 @@ package fwlib;
|
||||
my %customnetwork=();
|
||||
my %customhost=();
|
||||
my %customgrp=();
|
||||
my %customgeoipgrp=();
|
||||
my %customservice=();
|
||||
my %customservicegrp=();
|
||||
my %ccdnet=();
|
||||
@@ -42,6 +43,7 @@ require '/var/ipfire/general-functions.pl';
|
||||
my $confignet = "${General::swroot}/fwhosts/customnetworks";
|
||||
my $confighost = "${General::swroot}/fwhosts/customhosts";
|
||||
my $configgrp = "${General::swroot}/fwhosts/customgroups";
|
||||
my $configgeoipgrp = "${General::swroot}/fwhosts/customgeoipgrp";
|
||||
my $configsrv = "${General::swroot}/fwhosts/customservices";
|
||||
my $configsrvgrp = "${General::swroot}/fwhosts/customservicegrp";
|
||||
my $configccdnet = "${General::swroot}/ovpn/ccd.conf";
|
||||
@@ -59,6 +61,7 @@ my $netsettings = "${General::swroot}/ethernet/settings";
|
||||
&General::readhasharray("$confignet", \%customnetwork);
|
||||
&General::readhasharray("$confighost", \%customhost);
|
||||
&General::readhasharray("$configgrp", \%customgrp);
|
||||
&General::readhasharray("$configgeoipgrp", \%customgeoipgrp);
|
||||
&General::readhasharray("$configccdnet", \%ccdnet);
|
||||
&General::readhasharray("$configccdhost", \%ccdhost);
|
||||
&General::readhasharray("$configipsec", \%ipsecconf);
|
||||
@@ -295,6 +298,17 @@ sub get_addresses
|
||||
if ($customgrp{$grp}[0] eq $value) {
|
||||
my @address = &get_address($customgrp{$grp}[3], $customgrp{$grp}[2], $type);
|
||||
|
||||
if (@address) {
|
||||
push(@addresses, @address);
|
||||
}
|
||||
}
|
||||
}
|
||||
}elsif ($addr_type ~~ ["cust_geoip_src", "cust_geoip_tgt"] && $value =~ "group:") {
|
||||
$value=substr($value,6);
|
||||
foreach my $grp (sort {$a <=> $b} keys %customgeoipgrp) {
|
||||
if ($customgeoipgrp{$grp}[0] eq $value) {
|
||||
my @address = &get_address($addr_type, $customgeoipgrp{$grp}[2], $type);
|
||||
|
||||
if (@address) {
|
||||
push(@addresses, @address);
|
||||
}
|
||||
@@ -414,6 +428,20 @@ sub get_address
|
||||
}
|
||||
}
|
||||
|
||||
# Handle rule options with GeoIP as source.
|
||||
} elsif ($key eq "cust_geoip_src") {
|
||||
# Get external interface.
|
||||
my $external_interface = &get_external_interface();
|
||||
|
||||
push(@ret, ["-m geoip --src-cc $value", "$external_interface"]);
|
||||
|
||||
# Handle rule options with GeoIP as target.
|
||||
} elsif ($key eq "cust_geoip_tgt") {
|
||||
# Get external interface.
|
||||
my $external_interface = &get_external_interface();
|
||||
|
||||
push(@ret, ["-m geoip --dst-cc $value", "$external_interface"]);
|
||||
|
||||
# If nothing was selected, we assume "any".
|
||||
} else {
|
||||
push(@ret, ["0/0", ""]);
|
||||
@@ -552,4 +580,37 @@ sub get_internal_firewall_ip_address
|
||||
return 0;
|
||||
}
|
||||
|
||||
sub get_geoip_locations() {
|
||||
# Path to the directory which contains the binary geoip
|
||||
# databases.
|
||||
my $directory="/usr/share/xt_geoip/LE";
|
||||
|
||||
# Array to store the final country list.
|
||||
my @country_codes = ();
|
||||
|
||||
# Open location and do a directory listing.
|
||||
opendir(DIR, "$directory");
|
||||
my @locations = readdir(DIR);
|
||||
closedir(DIR);
|
||||
|
||||
# Loop through the directory listing, and cut of the file extensions.
|
||||
foreach my $location (sort @locations) {
|
||||
# skip . and ..
|
||||
next if($location =~ /^\.$/);
|
||||
next if($location =~ /^\.\.$/);
|
||||
|
||||
# Remove whitespaces.
|
||||
chomp($location);
|
||||
|
||||
# Cut-off file extension.
|
||||
my ($country_code, $extension) = split(/\./, $location);
|
||||
|
||||
# Add country code to array.
|
||||
push(@country_codes, $country_code);
|
||||
}
|
||||
|
||||
# Return final array.
|
||||
return @country_codes;
|
||||
}
|
||||
|
||||
return 1;
|
||||
|
||||
1
config/firewall/geoipblock
Normal file
1
config/firewall/geoipblock
Normal file
@@ -0,0 +1 @@
|
||||
GEOIPBLOCK_ENABLED=off
|
||||
77
config/firewall/rules.pl
Executable file → Normal file
77
config/firewall/rules.pl
Executable file → Normal file
@@ -60,6 +60,7 @@ my $configfwdfw = "${General::swroot}/firewall/config";
|
||||
my $configinput = "${General::swroot}/firewall/input";
|
||||
my $configoutgoing = "${General::swroot}/firewall/outgoing";
|
||||
my $p2pfile = "${General::swroot}/firewall/p2protocols";
|
||||
my $geoipfile = "${General::swroot}/firewall/geoipblock";
|
||||
my $configgrp = "${General::swroot}/fwhosts/customgroups";
|
||||
my $netsettings = "${General::swroot}/ethernet/settings";
|
||||
|
||||
@@ -88,14 +89,30 @@ sub main {
|
||||
# Flush all chains.
|
||||
&flush();
|
||||
|
||||
# Reload firewall rules.
|
||||
&preparerules();
|
||||
# Prepare firewall rules.
|
||||
if (! -z "${General::swroot}/firewall/input"){
|
||||
&buildrules(\%configinputfw);
|
||||
}
|
||||
if (! -z "${General::swroot}/firewall/outgoing"){
|
||||
&buildrules(\%configoutgoingfw);
|
||||
}
|
||||
if (! -z "${General::swroot}/firewall/config"){
|
||||
&buildrules(\%configfwdfw);
|
||||
}
|
||||
|
||||
# Load P2P block rules.
|
||||
&p2pblock();
|
||||
|
||||
# Load GeoIP block rules.
|
||||
&geoipblock();
|
||||
|
||||
# Reload firewall policy.
|
||||
run("/usr/sbin/firewall-policy");
|
||||
|
||||
#Reload firewall.local if present
|
||||
if ( -f '/etc/sysconfig/firewall.local'){
|
||||
run("/etc/sysconfig/firewall.local reload");
|
||||
}
|
||||
}
|
||||
|
||||
sub run {
|
||||
@@ -146,18 +163,6 @@ sub flush {
|
||||
run("$IPTABLES -t mangle -F $CHAIN_MANGLE_NAT_DESTINATION_FIX");
|
||||
}
|
||||
|
||||
sub preparerules {
|
||||
if (! -z "${General::swroot}/firewall/input"){
|
||||
&buildrules(\%configinputfw);
|
||||
}
|
||||
if (! -z "${General::swroot}/firewall/outgoing"){
|
||||
&buildrules(\%configoutgoingfw);
|
||||
}
|
||||
if (! -z "${General::swroot}/firewall/config"){
|
||||
&buildrules(\%configfwdfw);
|
||||
}
|
||||
}
|
||||
|
||||
sub buildrules {
|
||||
my $hash = shift;
|
||||
|
||||
@@ -364,13 +369,17 @@ sub buildrules {
|
||||
my @source_options = ();
|
||||
if ($source =~ /mac/) {
|
||||
push(@source_options, $source);
|
||||
} elsif ($source) {
|
||||
} elsif ($source =~ /-m geoip/) {
|
||||
push(@source_options, $source);
|
||||
} elsif($source) {
|
||||
push(@source_options, ("-s", $source));
|
||||
}
|
||||
|
||||
# Prepare destination options.
|
||||
my @destination_options = ();
|
||||
if ($destination) {
|
||||
if ($destination =~ /-m geoip/) {
|
||||
push(@destination_options, $destination);
|
||||
} elsif ($destination) {
|
||||
push(@destination_options, ("-d", $destination));
|
||||
}
|
||||
|
||||
@@ -512,10 +521,6 @@ sub buildrules {
|
||||
}
|
||||
}
|
||||
}
|
||||
#Reload firewall.local if present
|
||||
if ( -f '/etc/sysconfig/firewall.local'){
|
||||
run("/etc/sysconfig/firewall.local reload");
|
||||
}
|
||||
}
|
||||
|
||||
# Formats the given timestamp into the iptables format which is "hh:mm" UTC.
|
||||
@@ -573,6 +578,38 @@ sub p2pblock {
|
||||
}
|
||||
}
|
||||
|
||||
sub geoipblock {
|
||||
my %geoipsettings = ();
|
||||
$geoipsettings{'GEOIPBLOCK_ENABLED'} = "off";
|
||||
|
||||
# Flush iptables chain.
|
||||
run("$IPTABLES -F GEOIPBLOCK");
|
||||
|
||||
# Check if the geoip settings file exists
|
||||
if (-e "$geoipfile") {
|
||||
# Read settings file
|
||||
&General::readhash("$geoipfile", \%geoipsettings);
|
||||
}
|
||||
|
||||
# If geoip blocking is not enabled, we are finished here.
|
||||
if ($geoipsettings{'GEOIPBLOCK_ENABLED'} ne "on") {
|
||||
# Exit submodule. Process remaining script.
|
||||
return;
|
||||
}
|
||||
|
||||
# Get supported locations.
|
||||
my @locations = &fwlib::get_geoip_locations();
|
||||
|
||||
# Loop through all supported geoip locations and
|
||||
# create iptables rules, if blocking this country
|
||||
# is enabled.
|
||||
foreach my $location (@locations) {
|
||||
if($geoipsettings{$location} eq "on") {
|
||||
run("$IPTABLES -A GEOIPBLOCK -m geoip --src-cc $location -j DROP");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
sub get_protocols {
|
||||
my $hash = shift;
|
||||
my $key = shift;
|
||||
|
||||
@@ -15,10 +15,6 @@ CONFIG_DRIVER_HOSTAP=y
|
||||
# Driver interface for wired authenticator
|
||||
#CONFIG_DRIVER_WIRED=y
|
||||
|
||||
# Driver interface for madwifi driver
|
||||
#CONFIG_DRIVER_MADWIFI=y
|
||||
#CFLAGS += -I../../madwifi # change to the madwifi source directory
|
||||
|
||||
# Driver interface for Prism54 driver
|
||||
CONFIG_DRIVER_PRISM54=y
|
||||
|
||||
@@ -49,14 +45,14 @@ CONFIG_RSN_PREAUTH=y
|
||||
CONFIG_PEERKEY=y
|
||||
|
||||
# IEEE 802.11w (management frame protection)
|
||||
# This version is an experimental implementation based on IEEE 802.11w/D1.0
|
||||
# draft and is subject to change since the standard has not yet been finalized.
|
||||
# Driver support is also needed for IEEE 802.11w.
|
||||
#CONFIG_IEEE80211W=y
|
||||
CONFIG_IEEE80211W=y
|
||||
|
||||
# Integrated EAP server
|
||||
CONFIG_EAP=y
|
||||
|
||||
# EAP Re-authentication Protocol (ERP) in integrated EAP server
|
||||
CONFIG_ERP=y
|
||||
|
||||
# EAP-MD5 for the integrated EAP server
|
||||
CONFIG_EAP_MD5=y
|
||||
|
||||
@@ -91,6 +87,9 @@ CONFIG_EAP_TTLS=y
|
||||
# EAP-PSK for the integrated EAP server (this is _not_ needed for WPA-PSK)
|
||||
#CONFIG_EAP_PSK=y
|
||||
|
||||
# EAP-pwd for the integrated EAP server (secure authentication with a password)
|
||||
#CONFIG_EAP_PWD=y
|
||||
|
||||
# EAP-SAKE for the integrated EAP server
|
||||
#CONFIG_EAP_SAKE=y
|
||||
|
||||
@@ -110,6 +109,8 @@ CONFIG_EAP_TTLS=y
|
||||
CONFIG_WPS=y
|
||||
# Enable UPnP support for external WPS Registrars
|
||||
CONFIG_WPS_UPNP=y
|
||||
# Enable WPS support with NFC config method
|
||||
#CONFIG_WPS_NFC=y
|
||||
|
||||
# EAP-IKEv2
|
||||
CONFIG_EAP_IKEV2=y
|
||||
@@ -117,6 +118,9 @@ CONFIG_EAP_IKEV2=y
|
||||
# Trusted Network Connect (EAP-TNC)
|
||||
CONFIG_EAP_TNC=y
|
||||
|
||||
# EAP-EKE for the integrated EAP server
|
||||
#CONFIG_EAP_EKE=y
|
||||
|
||||
# PKCS#12 (PFX) support (used to read private key and certificate file from
|
||||
# a file that usually has extension .p12 or .pfx)
|
||||
CONFIG_PKCS12=y
|
||||
@@ -138,14 +142,171 @@ CONFIG_IEEE80211R=y
|
||||
# IEEE 802.11n (High Throughput) support
|
||||
CONFIG_IEEE80211N=y
|
||||
|
||||
# Wireless Network Management (IEEE Std 802.11v-2011)
|
||||
# Note: This is experimental and not complete implementation.
|
||||
#CONFIG_WNM=y
|
||||
|
||||
# IEEE 802.11ac (Very High Throughput) support
|
||||
CONFIG_IEEE80211AC=y
|
||||
|
||||
# Remove debugging code that is printing out debug messages to stdout.
|
||||
# This can be used to reduce the size of the hostapd considerably if debugging
|
||||
# code is not needed.
|
||||
CONFIG_NO_STDOUT_DEBUG=y
|
||||
|
||||
# IEEE 802.11ac (Very High Throughput) support
|
||||
CONFIG_IEEE80211AC=y
|
||||
|
||||
# Enable AUTO_CHANNEL_SELECTION
|
||||
# This is needed for dfs (radar detection) channels
|
||||
# Add support for writing debug log to a file: -f /tmp/hostapd.log
|
||||
# Disabled by default.
|
||||
#CONFIG_DEBUG_FILE=y
|
||||
|
||||
# Add support for sending all debug messages (regardless of debug verbosity)
|
||||
# to the Linux kernel tracing facility. This helps debug the entire stack by
|
||||
# making it easy to record everything happening from the driver up into the
|
||||
# same file, e.g., using trace-cmd.
|
||||
#CONFIG_DEBUG_LINUX_TRACING=y
|
||||
|
||||
# Remove support for RADIUS accounting
|
||||
#CONFIG_NO_ACCOUNTING=y
|
||||
|
||||
# Remove support for RADIUS
|
||||
#CONFIG_NO_RADIUS=y
|
||||
|
||||
# Remove support for VLANs
|
||||
#CONFIG_NO_VLAN=y
|
||||
|
||||
# Enable support for fully dynamic VLANs. This enables hostapd to
|
||||
# automatically create bridge and VLAN interfaces if necessary.
|
||||
#CONFIG_FULL_DYNAMIC_VLAN=y
|
||||
|
||||
# Use netlink-based kernel API for VLAN operations instead of ioctl()
|
||||
# Note: This requires libnl 3.1 or newer.
|
||||
#CONFIG_VLAN_NETLINK=y
|
||||
|
||||
# Remove support for dumping internal state through control interface commands
|
||||
# This can be used to reduce binary size at the cost of disabling a debugging
|
||||
# option.
|
||||
#CONFIG_NO_DUMP_STATE=y
|
||||
|
||||
# Enable tracing code for developer debugging
|
||||
# This tracks use of memory allocations and other registrations and reports
|
||||
# incorrect use with a backtrace of call (or allocation) location.
|
||||
#CONFIG_WPA_TRACE=y
|
||||
# For BSD, comment out these.
|
||||
#LIBS += -lexecinfo
|
||||
#LIBS_p += -lexecinfo
|
||||
#LIBS_c += -lexecinfo
|
||||
|
||||
# Use libbfd to get more details for developer debugging
|
||||
# This enables use of libbfd to get more detailed symbols for the backtraces
|
||||
# generated by CONFIG_WPA_TRACE=y.
|
||||
#CONFIG_WPA_TRACE_BFD=y
|
||||
# For BSD, comment out these.
|
||||
#LIBS += -lbfd -liberty -lz
|
||||
#LIBS_p += -lbfd -liberty -lz
|
||||
#LIBS_c += -lbfd -liberty -lz
|
||||
|
||||
# hostapd depends on strong random number generation being available from the
|
||||
# operating system. os_get_random() function is used to fetch random data when
|
||||
# needed, e.g., for key generation. On Linux and BSD systems, this works by
|
||||
# reading /dev/urandom. It should be noted that the OS entropy pool needs to be
|
||||
# properly initialized before hostapd is started. This is important especially
|
||||
# on embedded devices that do not have a hardware random number generator and
|
||||
# may by default start up with minimal entropy available for random number
|
||||
# generation.
|
||||
#
|
||||
# As a safety net, hostapd is by default trying to internally collect
|
||||
# additional entropy for generating random data to mix in with the data
|
||||
# fetched from the OS. This by itself is not considered to be very strong, but
|
||||
# it may help in cases where the system pool is not initialized properly.
|
||||
# However, it is very strongly recommended that the system pool is initialized
|
||||
# with enough entropy either by using hardware assisted random number
|
||||
# generator or by storing state over device reboots.
|
||||
#
|
||||
# hostapd can be configured to maintain its own entropy store over restarts to
|
||||
# enhance random number generation. This is not perfect, but it is much more
|
||||
# secure than using the same sequence of random numbers after every reboot.
|
||||
# This can be enabled with -e<entropy file> command line option. The specified
|
||||
# file needs to be readable and writable by hostapd.
|
||||
#
|
||||
# If the os_get_random() is known to provide strong random data (e.g., on
|
||||
# Linux/BSD, the board in question is known to have reliable source of random
|
||||
# data from /dev/urandom), the internal hostapd random pool can be disabled.
|
||||
# This will save some in binary size and CPU use. However, this should only be
|
||||
# considered for builds that are known to be used on devices that meet the
|
||||
# requirements described above.
|
||||
#CONFIG_NO_RANDOM_POOL=y
|
||||
|
||||
# Select TLS implementation
|
||||
# openssl = OpenSSL (default)
|
||||
# gnutls = GnuTLS
|
||||
# internal = Internal TLSv1 implementation (experimental)
|
||||
# none = Empty template
|
||||
#CONFIG_TLS=openssl
|
||||
|
||||
# TLS-based EAP methods require at least TLS v1.0. Newer version of TLS (v1.1)
|
||||
# can be enabled to get a stronger construction of messages when block ciphers
|
||||
# are used.
|
||||
#CONFIG_TLSV11=y
|
||||
|
||||
# TLS-based EAP methods require at least TLS v1.0. Newer version of TLS (v1.2)
|
||||
# can be enabled to enable use of stronger crypto algorithms.
|
||||
#CONFIG_TLSV12=y
|
||||
|
||||
# If CONFIG_TLS=internal is used, additional library and include paths are
|
||||
# needed for LibTomMath. Alternatively, an integrated, minimal version of
|
||||
# LibTomMath can be used. See beginning of libtommath.c for details on benefits
|
||||
# and drawbacks of this option.
|
||||
#CONFIG_INTERNAL_LIBTOMMATH=y
|
||||
#ifndef CONFIG_INTERNAL_LIBTOMMATH
|
||||
#LTM_PATH=/usr/src/libtommath-0.39
|
||||
#CFLAGS += -I$(LTM_PATH)
|
||||
#LIBS += -L$(LTM_PATH)
|
||||
#LIBS_p += -L$(LTM_PATH)
|
||||
#endif
|
||||
# At the cost of about 4 kB of additional binary size, the internal LibTomMath
|
||||
# can be configured to include faster routines for exptmod, sqr, and div to
|
||||
# speed up DH and RSA calculation considerably
|
||||
#CONFIG_INTERNAL_LIBTOMMATH_FAST=y
|
||||
|
||||
# Interworking (IEEE 802.11u)
|
||||
# This can be used to enable functionality to improve interworking with
|
||||
# external networks.
|
||||
#CONFIG_INTERWORKING=y
|
||||
|
||||
# Hotspot 2.0
|
||||
#CONFIG_HS20=y
|
||||
|
||||
# Enable SQLite database support in hlr_auc_gw, EAP-SIM DB, and eap_user_file
|
||||
#CONFIG_SQLITE=y
|
||||
|
||||
# Testing options
|
||||
# This can be used to enable some testing options (see also the example
|
||||
# configuration file) that are really useful only for testing clients that
|
||||
# connect to this hostapd. These options allow, for example, to drop a
|
||||
# certain percentage of probe requests or auth/(re)assoc frames.
|
||||
#
|
||||
#CONFIG_TESTING_OPTIONS=y
|
||||
|
||||
# Automatic Channel Selection
|
||||
# This will allow hostapd to pick the channel automatically when channel is set
|
||||
# to "acs_survey" or "0". Eventually, other ACS algorithms can be added in
|
||||
# similar way.
|
||||
#
|
||||
# Automatic selection is currently only done through initialization, later on
|
||||
# we hope to do background checks to keep us moving to more ideal channels as
|
||||
# time goes by. ACS is currently only supported through the nl80211 driver and
|
||||
# your driver must have survey dump capability that is filled by the driver
|
||||
# during scanning.
|
||||
#
|
||||
# You can customize the ACS survey algorithm with the hostapd.conf variable
|
||||
# acs_num_scans.
|
||||
#
|
||||
# Supported ACS drivers:
|
||||
# * ath9k
|
||||
# * ath5k
|
||||
# * ath10k
|
||||
#
|
||||
# For more details refer to:
|
||||
# http://wireless.kernel.org/en/users/Documentation/acs
|
||||
#
|
||||
CONFIG_ACS=y
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
Timeout 300
|
||||
ServerSignature on
|
||||
UseCanonicalName off
|
||||
ServerTokens Full
|
||||
ServerTokens Prod
|
||||
LogLevel warn
|
||||
CustomLog /var/log/httpd/access_log combined
|
||||
Include /etc/httpd/conf/hostname.conf
|
||||
|
||||
@@ -117,4 +117,5 @@ Include /etc/httpd/conf/default-server.conf
|
||||
#
|
||||
Include /etc/httpd/conf/vhosts.d/*.conf
|
||||
|
||||
|
||||
# Dummy LoadModule directive to aid module installations
|
||||
#LoadModule dummy_module /usr/lib/apache2/modules/mod_dummy.so
|
||||
|
||||
@@ -1,22 +0,0 @@
|
||||
Listen 1006
|
||||
|
||||
<VirtualHost *:1006>
|
||||
|
||||
SSLEngine on
|
||||
SSLProtocol all -SSLv2
|
||||
SSLCipherSuite ALL:!ADH:!EXPORT56:!eNULL:!SSLv2:RC4+RSA:+HIGH:+MEDIUM:+LOW:+EXP
|
||||
SSLCertificateFile /etc/httpd/server.crt
|
||||
SSLCertificateKeyFile /etc/httpd/server.key
|
||||
|
||||
DocumentRoot /srv/web/esniper
|
||||
|
||||
Include /etc/httpd/conf/conf.d/php*.conf
|
||||
|
||||
<Directory /srv/web/esniper>
|
||||
Options None
|
||||
AllowOverride None
|
||||
Order allow,deny
|
||||
Allow from all
|
||||
</Directory>
|
||||
|
||||
</VirtualHost>
|
||||
@@ -1,16 +0,0 @@
|
||||
Listen 1002
|
||||
|
||||
<VirtualHost *:1002>
|
||||
|
||||
DocumentRoot /srv/web/phpaj
|
||||
|
||||
Include /etc/httpd/conf/conf.d/php*.conf
|
||||
|
||||
<Directory /srv/web/phpaj>
|
||||
Options None
|
||||
AllowOverride None
|
||||
Order allow,deny
|
||||
Allow from all
|
||||
</Directory>
|
||||
|
||||
</VirtualHost>
|
||||
@@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/arm 3.14.30 Kernel Configuration
|
||||
# Linux/arm 3.14.37 Kernel Configuration
|
||||
#
|
||||
CONFIG_ARM=y
|
||||
CONFIG_SYS_SUPPORTS_APM_EMULATION=y
|
||||
@@ -5042,7 +5042,6 @@ CONFIG_DEBUG_KERNEL=y
|
||||
#
|
||||
# Memory Debugging
|
||||
#
|
||||
# CONFIG_DEBUG_PAGEALLOC is not set
|
||||
# CONFIG_DEBUG_OBJECTS is not set
|
||||
# CONFIG_SLUB_DEBUG_ON is not set
|
||||
# CONFIG_SLUB_STATS is not set
|
||||
@@ -5275,6 +5274,7 @@ CONFIG_GRKERNSEC_CHROOT_UNIX=y
|
||||
CONFIG_GRKERNSEC_CHROOT_FINDTASK=y
|
||||
CONFIG_GRKERNSEC_CHROOT_NICE=y
|
||||
CONFIG_GRKERNSEC_CHROOT_SYSCTL=y
|
||||
CONFIG_GRKERNSEC_CHROOT_RENAME=y
|
||||
# CONFIG_GRKERNSEC_CHROOT_CAPS is not set
|
||||
CONFIG_GRKERNSEC_CHROOT_INITRD=y
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/arm 3.14.30 Kernel Configuration
|
||||
# Linux/arm 3.14.37 Kernel Configuration
|
||||
#
|
||||
CONFIG_ARM=y
|
||||
CONFIG_MIGHT_HAVE_PCI=y
|
||||
@@ -5530,7 +5530,6 @@ CONFIG_DEBUG_KERNEL=y
|
||||
#
|
||||
# Memory Debugging
|
||||
#
|
||||
# CONFIG_DEBUG_PAGEALLOC is not set
|
||||
# CONFIG_DEBUG_OBJECTS is not set
|
||||
# CONFIG_SLUB_STATS is not set
|
||||
CONFIG_HAVE_DEBUG_KMEMLEAK=y
|
||||
@@ -5764,6 +5763,7 @@ CONFIG_GRKERNSEC_CHROOT_UNIX=y
|
||||
CONFIG_GRKERNSEC_CHROOT_FINDTASK=y
|
||||
CONFIG_GRKERNSEC_CHROOT_NICE=y
|
||||
CONFIG_GRKERNSEC_CHROOT_SYSCTL=y
|
||||
CONFIG_GRKERNSEC_CHROOT_RENAME=y
|
||||
# CONFIG_GRKERNSEC_CHROOT_CAPS is not set
|
||||
CONFIG_GRKERNSEC_CHROOT_INITRD=y
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/arm 3.14.30 Kernel Configuration
|
||||
# Linux/arm 3.14.37 Kernel Configuration
|
||||
#
|
||||
CONFIG_ARM=y
|
||||
CONFIG_SYS_SUPPORTS_APM_EMULATION=y
|
||||
@@ -3643,7 +3643,6 @@ CONFIG_DEBUG_KERNEL=y
|
||||
#
|
||||
# Memory Debugging
|
||||
#
|
||||
# CONFIG_DEBUG_PAGEALLOC is not set
|
||||
# CONFIG_DEBUG_OBJECTS is not set
|
||||
# CONFIG_SLUB_DEBUG_ON is not set
|
||||
# CONFIG_SLUB_STATS is not set
|
||||
@@ -3858,6 +3857,7 @@ CONFIG_GRKERNSEC_CHROOT_UNIX=y
|
||||
CONFIG_GRKERNSEC_CHROOT_FINDTASK=y
|
||||
CONFIG_GRKERNSEC_CHROOT_NICE=y
|
||||
CONFIG_GRKERNSEC_CHROOT_SYSCTL=y
|
||||
CONFIG_GRKERNSEC_CHROOT_RENAME=y
|
||||
# CONFIG_GRKERNSEC_CHROOT_CAPS is not set
|
||||
CONFIG_GRKERNSEC_CHROOT_INITRD=y
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/x86 3.14.30 Kernel Configuration
|
||||
# Linux/x86 3.14.37 Kernel Configuration
|
||||
#
|
||||
# CONFIG_64BIT is not set
|
||||
CONFIG_X86_32=y
|
||||
@@ -410,6 +410,7 @@ CONFIG_SCHED_MC=y
|
||||
CONFIG_PREEMPT_NONE=y
|
||||
# CONFIG_PREEMPT_VOLUNTARY is not set
|
||||
# CONFIG_PREEMPT is not set
|
||||
CONFIG_X86_UP_APIC_MSI=y
|
||||
CONFIG_X86_LOCAL_APIC=y
|
||||
CONFIG_X86_IO_APIC=y
|
||||
CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
|
||||
@@ -5494,7 +5495,6 @@ CONFIG_DEBUG_KERNEL=y
|
||||
#
|
||||
# Memory Debugging
|
||||
#
|
||||
# CONFIG_DEBUG_PAGEALLOC is not set
|
||||
# CONFIG_DEBUG_OBJECTS is not set
|
||||
# CONFIG_SLUB_DEBUG_ON is not set
|
||||
# CONFIG_SLUB_STATS is not set
|
||||
@@ -5766,6 +5766,7 @@ CONFIG_GRKERNSEC_CHROOT_UNIX=y
|
||||
CONFIG_GRKERNSEC_CHROOT_FINDTASK=y
|
||||
CONFIG_GRKERNSEC_CHROOT_NICE=y
|
||||
CONFIG_GRKERNSEC_CHROOT_SYSCTL=y
|
||||
CONFIG_GRKERNSEC_CHROOT_RENAME=y
|
||||
# CONFIG_GRKERNSEC_CHROOT_CAPS is not set
|
||||
CONFIG_GRKERNSEC_CHROOT_INITRD=y
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/x86 3.14.30 Kernel Configuration
|
||||
# Linux/x86 3.14.37 Kernel Configuration
|
||||
#
|
||||
# CONFIG_64BIT is not set
|
||||
CONFIG_X86_32=y
|
||||
@@ -420,6 +420,7 @@ CONFIG_SCHED_MC=y
|
||||
CONFIG_PREEMPT_NONE=y
|
||||
# CONFIG_PREEMPT_VOLUNTARY is not set
|
||||
# CONFIG_PREEMPT is not set
|
||||
CONFIG_X86_UP_APIC_MSI=y
|
||||
CONFIG_X86_LOCAL_APIC=y
|
||||
CONFIG_X86_IO_APIC=y
|
||||
CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
|
||||
@@ -5537,7 +5538,6 @@ CONFIG_DEBUG_KERNEL=y
|
||||
#
|
||||
# Memory Debugging
|
||||
#
|
||||
# CONFIG_DEBUG_PAGEALLOC is not set
|
||||
# CONFIG_DEBUG_OBJECTS is not set
|
||||
# CONFIG_SLUB_DEBUG_ON is not set
|
||||
# CONFIG_SLUB_STATS is not set
|
||||
@@ -5807,6 +5807,7 @@ CONFIG_GRKERNSEC_CHROOT_UNIX=y
|
||||
CONFIG_GRKERNSEC_CHROOT_FINDTASK=y
|
||||
CONFIG_GRKERNSEC_CHROOT_NICE=y
|
||||
CONFIG_GRKERNSEC_CHROOT_SYSCTL=y
|
||||
CONFIG_GRKERNSEC_CHROOT_RENAME=y
|
||||
# CONFIG_GRKERNSEC_CHROOT_CAPS is not set
|
||||
CONFIG_GRKERNSEC_CHROOT_INITRD=y
|
||||
|
||||
|
||||
@@ -22,6 +22,12 @@
|
||||
'title' => "P2P-Block",
|
||||
'enabled' => 1,
|
||||
};
|
||||
$subfirewall->{'50.geoipblock'} = {
|
||||
'caption' => $Lang::tr{'geoipblock'},
|
||||
'uri' => '/cgi-bin/geoip-block.cgi',
|
||||
'title' => $Lang::tr{'geoipblock'},
|
||||
'enabled' => 1,
|
||||
};
|
||||
$subfirewall->{'60.wireless'} = {
|
||||
'caption' => $Lang::tr{'blue access'},
|
||||
'uri' => '/cgi-bin/wireless.cgi',
|
||||
|
||||
10
config/qemu/qemu
Normal file
10
config/qemu/qemu
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# QEMU wrapper to enable kvm as default like old qemu-kvm...
|
||||
#
|
||||
if [[ $* == *" -no-kvm"* ]]; then
|
||||
qemu-system-i386 $*
|
||||
else
|
||||
qemu-system-i386 -enable-kvm $*
|
||||
fi
|
||||
exit ${?}
|
||||
@@ -1,13 +1,50 @@
|
||||
#usr/lib/perl5/site_perl/5.12.3/Locale
|
||||
usr/lib/perl5/site_perl/5.12.3/Locale/Constants.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/Locale/Constants.pod
|
||||
usr/lib/perl5/site_perl/5.12.3/Locale/Country.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/Locale/Country.pod
|
||||
usr/lib/perl5/site_perl/5.12.3/Locale/Currency.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/Locale/Currency.pod
|
||||
usr/lib/perl5/site_perl/5.12.3/Locale/Language.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/Locale/Language.pod
|
||||
usr/lib/perl5/site_perl/5.12.3/Locale/Script.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/Locale/Script.pod
|
||||
#usr/lib/perl5/site_perl/5.12.3/MACHINE-linux-thread-multi/auto/Locale-Codes
|
||||
#usr/lib/perl5/site_perl/5.12.3/MACHINE-linux-thread-multi/auto/Locale-Codes/.packlist
|
||||
#usr/lib/perl5/5.12.3/Locale/Codes
|
||||
usr/lib/perl5/5.12.3/Locale/Codes.pm
|
||||
usr/lib/perl5/5.12.3/Locale/Codes.pod
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/API.pod
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/Changes.pod
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/Constants.pm
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/Constants.pod
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/Country.pm
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/Country.pod
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/Country_Codes.pm
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/Country_Retired.pm
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/Currency.pm
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/Currency.pod
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/Currency_Codes.pm
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/Currency_Retired.pm
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/LangExt.pm
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/LangExt.pod
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/LangExt_Codes.pm
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/LangExt_Retired.pm
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/LangFam.pm
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/LangFam.pod
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/LangFam_Codes.pm
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/LangFam_Retired.pm
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/LangVar.pm
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/LangVar.pod
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/LangVar_Codes.pm
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/LangVar_Retired.pm
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/Language.pm
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/Language.pod
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/Language_Codes.pm
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/Language_Retired.pm
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/Script.pm
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/Script.pod
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/Script_Codes.pm
|
||||
usr/lib/perl5/5.12.3/Locale/Codes/Script_Retired.pm
|
||||
#usr/lib/perl5/5.12.3/MACHINE-linux-thread-multi/auto/Locale
|
||||
#usr/lib/perl5/5.12.3/MACHINE-linux-thread-multi/auto/Locale/Codes
|
||||
#usr/lib/perl5/5.12.3/MACHINE-linux-thread-multi/auto/Locale/Codes/.packlist
|
||||
#usr/share/man/man3/Locale::Codes.3
|
||||
#usr/share/man/man3/Locale::Codes::API.3
|
||||
#usr/share/man/man3/Locale::Codes::Changes.3
|
||||
#usr/share/man/man3/Locale::Codes::Constants.3
|
||||
#usr/share/man/man3/Locale::Codes::Country.3
|
||||
#usr/share/man/man3/Locale::Codes::Currency.3
|
||||
#usr/share/man/man3/Locale::Codes::LangExt.3
|
||||
#usr/share/man/man3/Locale::Codes::LangFam.3
|
||||
#usr/share/man/man3/Locale::Codes::LangFam_Retired.3
|
||||
#usr/share/man/man3/Locale::Codes::LangVar.3
|
||||
#usr/share/man/man3/Locale::Codes::Language.3
|
||||
#usr/share/man/man3/Locale::Codes::Script.3
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
#etc/httpd
|
||||
#etc/httpd/conf
|
||||
#etc/httpd/conf/conf.d
|
||||
etc/httpd/conf/conf.d/php5.conf
|
||||
etc/httpd/conf/default-server.conf
|
||||
#etc/httpd/conf/extra
|
||||
#etc/httpd/conf/extra/httpd-autoindex.conf
|
||||
#etc/httpd/conf/extra/httpd-dav.conf
|
||||
@@ -12,9 +15,14 @@
|
||||
#etc/httpd/conf/extra/httpd-ssl.conf
|
||||
#etc/httpd/conf/extra/httpd-userdir.conf
|
||||
#etc/httpd/conf/extra/httpd-vhosts.conf
|
||||
etc/httpd/conf/global.conf
|
||||
etc/httpd/conf/hostname.conf
|
||||
etc/httpd/conf/httpd.conf
|
||||
etc/httpd/conf/listen.conf
|
||||
etc/httpd/conf/loadmodule.conf
|
||||
etc/httpd/conf/magic
|
||||
etc/httpd/conf/mime.types
|
||||
etc/httpd/conf/mod_log_config.conf
|
||||
#etc/httpd/conf/original
|
||||
#etc/httpd/conf/original/extra
|
||||
#etc/httpd/conf/original/extra/httpd-autoindex.conf
|
||||
@@ -29,6 +37,14 @@ etc/httpd/conf/mime.types
|
||||
#etc/httpd/conf/original/extra/httpd-userdir.conf
|
||||
#etc/httpd/conf/original/extra/httpd-vhosts.conf
|
||||
#etc/httpd/conf/original/httpd.conf
|
||||
etc/httpd/conf/server-tuning.conf
|
||||
etc/httpd/conf/ssl-global.conf
|
||||
etc/httpd/conf/uid.conf
|
||||
#etc/httpd/conf/vhosts.d
|
||||
etc/httpd/conf/vhosts.d/ipfire-interface-ssl.conf
|
||||
etc/httpd/conf/vhosts.d/ipfire-interface.conf
|
||||
#etc/httpd/conf/vhosts.d/nagios.conf
|
||||
#etc/httpd/conf/vhosts.d/openmailadmin.conf
|
||||
#srv/web
|
||||
#srv/web/ipfire
|
||||
#srv/web/ipfire/cgi-bin
|
||||
@@ -1336,7 +1352,7 @@ usr/lib/apr-util-1/apr_dbd_sqlite3.so
|
||||
#usr/lib/libapr-1.la
|
||||
usr/lib/libapr-1.so
|
||||
usr/lib/libapr-1.so.0
|
||||
usr/lib/libapr-1.so.0.5.0
|
||||
usr/lib/libapr-1.so.0.5.1
|
||||
#usr/lib/libaprutil-1.a
|
||||
#usr/lib/libaprutil-1.la
|
||||
usr/lib/libaprutil-1.so
|
||||
@@ -1373,76 +1389,3 @@ usr/sbin/httpd
|
||||
#usr/share/man/man8/rotatelogs.8
|
||||
#usr/share/man/man8/suexec.8
|
||||
var/log/httpd
|
||||
etc/httpd/conf/conf.d
|
||||
etc/httpd/conf/default-server.conf
|
||||
etc/httpd/conf/global.conf
|
||||
etc/httpd/conf/hostname.conf
|
||||
etc/httpd/conf/listen.conf
|
||||
etc/httpd/conf/loadmodule.conf
|
||||
etc/httpd/conf/mod_log_config.conf
|
||||
etc/httpd/conf/server-tuning.conf
|
||||
etc/httpd/conf/ssl-global.conf
|
||||
etc/httpd/conf/uid.conf
|
||||
etc/httpd/conf/vhosts.d/ipfire-interface-ssl.conf
|
||||
etc/httpd/conf/vhosts.d/ipfire-interface.conf
|
||||
srv/web/ipfire/cgi-bin/aliases.cgi
|
||||
srv/web/ipfire/cgi-bin/atm-status.cgi
|
||||
srv/web/ipfire/cgi-bin/backup.cgi
|
||||
srv/web/ipfire/cgi-bin/chpasswd.cgi
|
||||
srv/web/ipfire/cgi-bin/connections.cgi
|
||||
srv/web/ipfire/cgi-bin/connscheduler.cgi
|
||||
srv/web/ipfire/cgi-bin/country.cgi
|
||||
srv/web/ipfire/cgi-bin/credits.cgi
|
||||
srv/web/ipfire/cgi-bin/dns.cgi
|
||||
srv/web/ipfire/cgi-bin/dnsforward.cgi
|
||||
srv/web/ipfire/cgi-bin/ddns.cgi
|
||||
srv/web/ipfire/cgi-bin/dhcp.cgi
|
||||
srv/web/ipfire/cgi-bin/entropy.cgi
|
||||
srv/web/ipfire/cgi-bin/extrahd.cgi
|
||||
srv/web/ipfire/cgi-bin/fireinfo.cgi
|
||||
srv/web/ipfire/cgi-bin/firewall.cgi
|
||||
srv/web/ipfire/cgi-bin/fwhosts.cgi
|
||||
srv/web/ipfire/cgi-bin/gpl.cgi
|
||||
srv/web/ipfire/cgi-bin/gui.cgi
|
||||
srv/web/ipfire/cgi-bin/hardwaregraphs.cgi
|
||||
srv/web/ipfire/cgi-bin/hosts.cgi
|
||||
srv/web/ipfire/cgi-bin/ids.cgi
|
||||
srv/web/ipfire/cgi-bin/index.cgi
|
||||
srv/web/ipfire/cgi-bin/ipinfo.cgi
|
||||
srv/web/ipfire/cgi-bin/iptables.cgi
|
||||
srv/web/ipfire/cgi-bin/logs.cgi
|
||||
srv/web/ipfire/cgi-bin/mac.cgi
|
||||
srv/web/ipfire/cgi-bin/media.cgi
|
||||
srv/web/ipfire/cgi-bin/memory.cgi
|
||||
srv/web/ipfire/cgi-bin/modem.cgi
|
||||
srv/web/ipfire/cgi-bin/modem-status.cgi
|
||||
srv/web/ipfire/cgi-bin/netexternal.cgi
|
||||
srv/web/ipfire/cgi-bin/netinternal.cgi
|
||||
srv/web/ipfire/cgi-bin/netother.cgi
|
||||
srv/web/ipfire/cgi-bin/netovpnrw.cgi
|
||||
srv/web/ipfire/cgi-bin/netovpnsrv.cgi
|
||||
srv/web/ipfire/cgi-bin/optionsfw.cgi
|
||||
srv/web/ipfire/cgi-bin/ovpnmain.cgi
|
||||
srv/web/ipfire/cgi-bin/p2p-block.cgi
|
||||
srv/web/ipfire/cgi-bin/pakfire.cgi
|
||||
srv/web/ipfire/cgi-bin/pppsetup.cgi
|
||||
srv/web/ipfire/cgi-bin/proxy.cgi
|
||||
srv/web/ipfire/cgi-bin/qos.cgi
|
||||
srv/web/ipfire/cgi-bin/remote.cgi
|
||||
srv/web/ipfire/cgi-bin/routing.cgi
|
||||
srv/web/ipfire/cgi-bin/services.cgi
|
||||
srv/web/ipfire/cgi-bin/shutdown.cgi
|
||||
srv/web/ipfire/cgi-bin/speed.cgi
|
||||
srv/web/ipfire/cgi-bin/system.cgi
|
||||
srv/web/ipfire/cgi-bin/time.cgi
|
||||
srv/web/ipfire/cgi-bin/traffic.cgi
|
||||
srv/web/ipfire/cgi-bin/updatexlrator.cgi
|
||||
srv/web/ipfire/cgi-bin/upnp.cgi
|
||||
srv/web/ipfire/cgi-bin/urlfilter.cgi
|
||||
srv/web/ipfire/cgi-bin/vpnmain.cgi
|
||||
srv/web/ipfire/cgi-bin/wakeonlan.cgi
|
||||
srv/web/ipfire/cgi-bin/webaccess.cgi
|
||||
srv/web/ipfire/cgi-bin/wireless.cgi
|
||||
srv/web/ipfire/cgi-bin/wirelessclient.cgi
|
||||
srv/web/ipfire/html
|
||||
var/updatecache
|
||||
|
||||
@@ -61,6 +61,7 @@ etc/rc.d/init.d/mounttmpfs
|
||||
#etc/rc.d/init.d/mysql
|
||||
#etc/rc.d/init.d/netsnmpd
|
||||
etc/rc.d/init.d/network
|
||||
etc/rc.d/init.d/network-trigger
|
||||
etc/rc.d/init.d/network-vlans
|
||||
#etc/rc.d/init.d/networking
|
||||
etc/rc.d/init.d/networking/any
|
||||
@@ -91,6 +92,7 @@ etc/rc.d/init.d/networking/red.up/50-ipsec
|
||||
etc/rc.d/init.d/networking/red.up/50-ovpn
|
||||
etc/rc.d/init.d/networking/red.up/98-leds
|
||||
etc/rc.d/init.d/networking/red.up/99-fireinfo
|
||||
etc/rc.d/init.d/networking/red.up/99-geoip-database
|
||||
etc/rc.d/init.d/networking/red.up/99-pakfire-update
|
||||
etc/rc.d/init.d/networking/wpa_supplicant.exe
|
||||
#etc/rc.d/init.d/nfs-server
|
||||
@@ -229,6 +231,7 @@ etc/rc.d/rcsysinit.d/S73swconfig
|
||||
etc/rc.d/rcsysinit.d/S75firstsetup
|
||||
etc/rc.d/rcsysinit.d/S80localnet
|
||||
etc/rc.d/rcsysinit.d/S85firewall
|
||||
etc/rc.d/rcsysinit.d/S90network-trigger
|
||||
etc/rc.d/rcsysinit.d/S91network-vlans
|
||||
etc/rc.d/rcsysinit.d/S92rngd
|
||||
etc/rc.d/rc3.d/S15fireinfo
|
||||
|
||||
@@ -53,6 +53,7 @@ boot/dtb-KVER-ipfire-multi
|
||||
#boot/dtb-KVER-ipfire-multi/imx6dl-sabresd.dtb
|
||||
#boot/dtb-KVER-ipfire-multi/imx6dl-wandboard.dtb
|
||||
#boot/dtb-KVER-ipfire-multi/imx6q-arm2.dtb
|
||||
#boot/dtb-KVER-ipfire-multi/imx6q-cm-fx6.dtb
|
||||
#boot/dtb-KVER-ipfire-multi/imx6q-cubox-i.dtb
|
||||
#boot/dtb-KVER-ipfire-multi/imx6q-gw51xx.dtb
|
||||
#boot/dtb-KVER-ipfire-multi/imx6q-gw52xx.dtb
|
||||
|
||||
@@ -218,11 +218,11 @@ usr/lib/libcollectdclient.so.0.0.0
|
||||
#usr/lib/perl5/Collectd/Plugins
|
||||
#usr/lib/perl5/Collectd/Plugins/OpenVZ.pm
|
||||
#usr/lib/perl5/Collectd/Unixsock.pm
|
||||
#usr/lib/perl5/i586-linux-thread-multi
|
||||
#usr/lib/perl5/i586-linux-thread-multi/auto
|
||||
#usr/lib/perl5/i586-linux-thread-multi/auto/Collectd
|
||||
#usr/lib/perl5/i586-linux-thread-multi/auto/Collectd/.packlist
|
||||
#usr/lib/perl5/i586-linux-thread-multi/perllocal.pod
|
||||
#usr/lib/perl5/MACHINE-linux-thread-multi
|
||||
#usr/lib/perl5/MACHINE-linux-thread-multi/auto
|
||||
#usr/lib/perl5/MACHINE-linux-thread-multi/auto/Collectd
|
||||
#usr/lib/perl5/MACHINE-linux-thread-multi/auto/Collectd/.packlist
|
||||
#usr/lib/perl5/MACHINE-linux-thread-multi/perllocal.pod
|
||||
#usr/lib/pkgconfig/libcollectdclient.pc
|
||||
#usr/man/man3/Collectd::Unixsock.3
|
||||
usr/sbin/collectd
|
||||
|
||||
@@ -52,6 +52,7 @@ var/ipfire/extrahd
|
||||
var/ipfire/firewall
|
||||
#var/ipfire/firewall/config
|
||||
#var/ipfire/firewall/dmz
|
||||
#var/ipfire/firewall/geoipblock
|
||||
#var/ipfire/firewall/input
|
||||
#var/ipfire/firewall/nat
|
||||
#var/ipfire/firewall/outgoing
|
||||
@@ -59,6 +60,7 @@ var/ipfire/firewall
|
||||
#var/ipfire/firewall/settings
|
||||
var/ipfire/fwhosts
|
||||
#var/ipfire/fwhosts/customgroups
|
||||
#var/ipfire/fwhosts/customgeoipgrp
|
||||
#var/ipfire/fwhosts/customhosts
|
||||
#var/ipfire/fwhosts/customnetworks
|
||||
#var/ipfire/fwhosts/customservicegrp
|
||||
@@ -69,6 +71,7 @@ var/ipfire/fwlogs
|
||||
#var/ipfire/fwlogs/ipsettings
|
||||
#var/ipfire/fwlogs/portsettings
|
||||
var/ipfire/general-functions.pl
|
||||
var/ipfire/geoip-functions.pl
|
||||
var/ipfire/graphs.pl
|
||||
var/ipfire/header.pl
|
||||
var/ipfire/isdn
|
||||
|
||||
@@ -10,7 +10,6 @@ usr/bin/curl
|
||||
#usr/include/curl/multi.h
|
||||
#usr/include/curl/stdcheaders.h
|
||||
#usr/include/curl/typecheck-gcc.h
|
||||
#usr/include/curl/types.h
|
||||
#usr/lib/libcurl.a
|
||||
#usr/lib/libcurl.la
|
||||
usr/lib/libcurl.so
|
||||
@@ -18,9 +17,233 @@ usr/lib/libcurl.so.3
|
||||
usr/lib/libcurl.so.4
|
||||
usr/lib/libcurl.so.4.3.0
|
||||
#usr/lib/pkgconfig/libcurl.pc
|
||||
#usr/share/aclocal/libcurl.m4
|
||||
#usr/share/man/man1/curl-config.1
|
||||
#usr/share/man/man1/curl.1
|
||||
#usr/share/man/man1/mk-ca-bundle.1
|
||||
#usr/share/man/man3/CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE.3
|
||||
#usr/share/man/man3/CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE.3
|
||||
#usr/share/man/man3/CURLMOPT_MAXCONNECTS.3
|
||||
#usr/share/man/man3/CURLMOPT_MAX_HOST_CONNECTIONS.3
|
||||
#usr/share/man/man3/CURLMOPT_MAX_PIPELINE_LENGTH.3
|
||||
#usr/share/man/man3/CURLMOPT_MAX_TOTAL_CONNECTIONS.3
|
||||
#usr/share/man/man3/CURLMOPT_PIPELINING.3
|
||||
#usr/share/man/man3/CURLMOPT_PIPELINING_SERVER_BL.3
|
||||
#usr/share/man/man3/CURLMOPT_PIPELINING_SITE_BL.3
|
||||
#usr/share/man/man3/CURLMOPT_SOCKETDATA.3
|
||||
#usr/share/man/man3/CURLMOPT_SOCKETFUNCTION.3
|
||||
#usr/share/man/man3/CURLMOPT_TIMERDATA.3
|
||||
#usr/share/man/man3/CURLMOPT_TIMERFUNCTION.3
|
||||
#usr/share/man/man3/CURLOPT_ACCEPTTIMEOUT_MS.3
|
||||
#usr/share/man/man3/CURLOPT_ACCEPT_ENCODING.3
|
||||
#usr/share/man/man3/CURLOPT_ADDRESS_SCOPE.3
|
||||
#usr/share/man/man3/CURLOPT_APPEND.3
|
||||
#usr/share/man/man3/CURLOPT_AUTOREFERER.3
|
||||
#usr/share/man/man3/CURLOPT_BUFFERSIZE.3
|
||||
#usr/share/man/man3/CURLOPT_CAINFO.3
|
||||
#usr/share/man/man3/CURLOPT_CAPATH.3
|
||||
#usr/share/man/man3/CURLOPT_CERTINFO.3
|
||||
#usr/share/man/man3/CURLOPT_CHUNK_BGN_FUNCTION.3
|
||||
#usr/share/man/man3/CURLOPT_CHUNK_DATA.3
|
||||
#usr/share/man/man3/CURLOPT_CHUNK_END_FUNCTION.3
|
||||
#usr/share/man/man3/CURLOPT_CLOSESOCKETDATA.3
|
||||
#usr/share/man/man3/CURLOPT_CLOSESOCKETFUNCTION.3
|
||||
#usr/share/man/man3/CURLOPT_CONNECTTIMEOUT.3
|
||||
#usr/share/man/man3/CURLOPT_CONNECTTIMEOUT_MS.3
|
||||
#usr/share/man/man3/CURLOPT_CONNECT_ONLY.3
|
||||
#usr/share/man/man3/CURLOPT_CONV_FROM_NETWORK_FUNCTION.3
|
||||
#usr/share/man/man3/CURLOPT_CONV_FROM_UTF8_FUNCTION.3
|
||||
#usr/share/man/man3/CURLOPT_CONV_TO_NETWORK_FUNCTION.3
|
||||
#usr/share/man/man3/CURLOPT_COOKIE.3
|
||||
#usr/share/man/man3/CURLOPT_COOKIEFILE.3
|
||||
#usr/share/man/man3/CURLOPT_COOKIEJAR.3
|
||||
#usr/share/man/man3/CURLOPT_COOKIELIST.3
|
||||
#usr/share/man/man3/CURLOPT_COOKIESESSION.3
|
||||
#usr/share/man/man3/CURLOPT_COPYPOSTFIELDS.3
|
||||
#usr/share/man/man3/CURLOPT_CRLF.3
|
||||
#usr/share/man/man3/CURLOPT_CRLFILE.3
|
||||
#usr/share/man/man3/CURLOPT_CUSTOMREQUEST.3
|
||||
#usr/share/man/man3/CURLOPT_DEBUGDATA.3
|
||||
#usr/share/man/man3/CURLOPT_DEBUGFUNCTION.3
|
||||
#usr/share/man/man3/CURLOPT_DIRLISTONLY.3
|
||||
#usr/share/man/man3/CURLOPT_DNS_CACHE_TIMEOUT.3
|
||||
#usr/share/man/man3/CURLOPT_DNS_INTERFACE.3
|
||||
#usr/share/man/man3/CURLOPT_DNS_LOCAL_IP4.3
|
||||
#usr/share/man/man3/CURLOPT_DNS_LOCAL_IP6.3
|
||||
#usr/share/man/man3/CURLOPT_DNS_SERVERS.3
|
||||
#usr/share/man/man3/CURLOPT_DNS_USE_GLOBAL_CACHE.3
|
||||
#usr/share/man/man3/CURLOPT_EGDSOCKET.3
|
||||
#usr/share/man/man3/CURLOPT_ERRORBUFFER.3
|
||||
#usr/share/man/man3/CURLOPT_EXPECT_100_TIMEOUT_MS.3
|
||||
#usr/share/man/man3/CURLOPT_FAILONERROR.3
|
||||
#usr/share/man/man3/CURLOPT_FILETIME.3
|
||||
#usr/share/man/man3/CURLOPT_FNMATCH_DATA.3
|
||||
#usr/share/man/man3/CURLOPT_FNMATCH_FUNCTION.3
|
||||
#usr/share/man/man3/CURLOPT_FOLLOWLOCATION.3
|
||||
#usr/share/man/man3/CURLOPT_FORBID_REUSE.3
|
||||
#usr/share/man/man3/CURLOPT_FRESH_CONNECT.3
|
||||
#usr/share/man/man3/CURLOPT_FTPPORT.3
|
||||
#usr/share/man/man3/CURLOPT_FTPSSLAUTH.3
|
||||
#usr/share/man/man3/CURLOPT_FTP_ACCOUNT.3
|
||||
#usr/share/man/man3/CURLOPT_FTP_ALTERNATIVE_TO_USER.3
|
||||
#usr/share/man/man3/CURLOPT_FTP_CREATE_MISSING_DIRS.3
|
||||
#usr/share/man/man3/CURLOPT_FTP_FILEMETHOD.3
|
||||
#usr/share/man/man3/CURLOPT_FTP_RESPONSE_TIMEOUT.3
|
||||
#usr/share/man/man3/CURLOPT_FTP_SKIP_PASV_IP.3
|
||||
#usr/share/man/man3/CURLOPT_FTP_SSL_CCC.3
|
||||
#usr/share/man/man3/CURLOPT_FTP_USE_EPRT.3
|
||||
#usr/share/man/man3/CURLOPT_FTP_USE_EPSV.3
|
||||
#usr/share/man/man3/CURLOPT_FTP_USE_PRET.3
|
||||
#usr/share/man/man3/CURLOPT_GSSAPI_DELEGATION.3
|
||||
#usr/share/man/man3/CURLOPT_HEADER.3
|
||||
#usr/share/man/man3/CURLOPT_HEADERDATA.3
|
||||
#usr/share/man/man3/CURLOPT_HEADERFUNCTION.3
|
||||
#usr/share/man/man3/CURLOPT_HEADEROPT.3
|
||||
#usr/share/man/man3/CURLOPT_HTTP200ALIASES.3
|
||||
#usr/share/man/man3/CURLOPT_HTTPAUTH.3
|
||||
#usr/share/man/man3/CURLOPT_HTTPGET.3
|
||||
#usr/share/man/man3/CURLOPT_HTTPHEADER.3
|
||||
#usr/share/man/man3/CURLOPT_HTTPPOST.3
|
||||
#usr/share/man/man3/CURLOPT_HTTPPROXYTUNNEL.3
|
||||
#usr/share/man/man3/CURLOPT_HTTP_CONTENT_DECODING.3
|
||||
#usr/share/man/man3/CURLOPT_HTTP_TRANSFER_DECODING.3
|
||||
#usr/share/man/man3/CURLOPT_HTTP_VERSION.3
|
||||
#usr/share/man/man3/CURLOPT_IGNORE_CONTENT_LENGTH.3
|
||||
#usr/share/man/man3/CURLOPT_INFILESIZE.3
|
||||
#usr/share/man/man3/CURLOPT_INFILESIZE_LARGE.3
|
||||
#usr/share/man/man3/CURLOPT_INTERFACE.3
|
||||
#usr/share/man/man3/CURLOPT_INTERLEAVEDATA.3
|
||||
#usr/share/man/man3/CURLOPT_INTERLEAVEFUNCTION.3
|
||||
#usr/share/man/man3/CURLOPT_IOCTLDATA.3
|
||||
#usr/share/man/man3/CURLOPT_IOCTLFUNCTION.3
|
||||
#usr/share/man/man3/CURLOPT_IPRESOLVE.3
|
||||
#usr/share/man/man3/CURLOPT_ISSUERCERT.3
|
||||
#usr/share/man/man3/CURLOPT_KEYPASSWD.3
|
||||
#usr/share/man/man3/CURLOPT_KRBLEVEL.3
|
||||
#usr/share/man/man3/CURLOPT_LOCALPORT.3
|
||||
#usr/share/man/man3/CURLOPT_LOCALPORTRANGE.3
|
||||
#usr/share/man/man3/CURLOPT_LOGIN_OPTIONS.3
|
||||
#usr/share/man/man3/CURLOPT_LOW_SPEED_LIMIT.3
|
||||
#usr/share/man/man3/CURLOPT_LOW_SPEED_TIME.3
|
||||
#usr/share/man/man3/CURLOPT_MAIL_AUTH.3
|
||||
#usr/share/man/man3/CURLOPT_MAIL_FROM.3
|
||||
#usr/share/man/man3/CURLOPT_MAIL_RCPT.3
|
||||
#usr/share/man/man3/CURLOPT_MAXCONNECTS.3
|
||||
#usr/share/man/man3/CURLOPT_MAXFILESIZE.3
|
||||
#usr/share/man/man3/CURLOPT_MAXFILESIZE_LARGE.3
|
||||
#usr/share/man/man3/CURLOPT_MAXREDIRS.3
|
||||
#usr/share/man/man3/CURLOPT_MAX_RECV_SPEED_LARGE.3
|
||||
#usr/share/man/man3/CURLOPT_MAX_SEND_SPEED_LARGE.3
|
||||
#usr/share/man/man3/CURLOPT_NETRC.3
|
||||
#usr/share/man/man3/CURLOPT_NETRC_FILE.3
|
||||
#usr/share/man/man3/CURLOPT_NEW_DIRECTORY_PERMS.3
|
||||
#usr/share/man/man3/CURLOPT_NEW_FILE_PERMS.3
|
||||
#usr/share/man/man3/CURLOPT_NOBODY.3
|
||||
#usr/share/man/man3/CURLOPT_NOPROGRESS.3
|
||||
#usr/share/man/man3/CURLOPT_NOPROXY.3
|
||||
#usr/share/man/man3/CURLOPT_NOSIGNAL.3
|
||||
#usr/share/man/man3/CURLOPT_OPENSOCKETDATA.3
|
||||
#usr/share/man/man3/CURLOPT_OPENSOCKETFUNCTION.3
|
||||
#usr/share/man/man3/CURLOPT_PASSWORD.3
|
||||
#usr/share/man/man3/CURLOPT_PORT.3
|
||||
#usr/share/man/man3/CURLOPT_POST.3
|
||||
#usr/share/man/man3/CURLOPT_POSTFIELDS.3
|
||||
#usr/share/man/man3/CURLOPT_POSTFIELDSIZE.3
|
||||
#usr/share/man/man3/CURLOPT_POSTFIELDSIZE_LARGE.3
|
||||
#usr/share/man/man3/CURLOPT_POSTQUOTE.3
|
||||
#usr/share/man/man3/CURLOPT_POSTREDIR.3
|
||||
#usr/share/man/man3/CURLOPT_PREQUOTE.3
|
||||
#usr/share/man/man3/CURLOPT_PRIVATE.3
|
||||
#usr/share/man/man3/CURLOPT_PROGRESSDATA.3
|
||||
#usr/share/man/man3/CURLOPT_PROGRESSFUNCTION.3
|
||||
#usr/share/man/man3/CURLOPT_PROTOCOLS.3
|
||||
#usr/share/man/man3/CURLOPT_PROXY.3
|
||||
#usr/share/man/man3/CURLOPT_PROXYAUTH.3
|
||||
#usr/share/man/man3/CURLOPT_PROXYHEADER.3
|
||||
#usr/share/man/man3/CURLOPT_PROXYPASSWORD.3
|
||||
#usr/share/man/man3/CURLOPT_PROXYPORT.3
|
||||
#usr/share/man/man3/CURLOPT_PROXYTYPE.3
|
||||
#usr/share/man/man3/CURLOPT_PROXYUSERNAME.3
|
||||
#usr/share/man/man3/CURLOPT_PROXYUSERPWD.3
|
||||
#usr/share/man/man3/CURLOPT_PROXY_TRANSFER_MODE.3
|
||||
#usr/share/man/man3/CURLOPT_PUT.3
|
||||
#usr/share/man/man3/CURLOPT_QUOTE.3
|
||||
#usr/share/man/man3/CURLOPT_RANDOM_FILE.3
|
||||
#usr/share/man/man3/CURLOPT_RANGE.3
|
||||
#usr/share/man/man3/CURLOPT_READDATA.3
|
||||
#usr/share/man/man3/CURLOPT_READFUNCTION.3
|
||||
#usr/share/man/man3/CURLOPT_REDIR_PROTOCOLS.3
|
||||
#usr/share/man/man3/CURLOPT_REFERER.3
|
||||
#usr/share/man/man3/CURLOPT_RESOLVE.3
|
||||
#usr/share/man/man3/CURLOPT_RESUME_FROM.3
|
||||
#usr/share/man/man3/CURLOPT_RESUME_FROM_LARGE.3
|
||||
#usr/share/man/man3/CURLOPT_RTSP_CLIENT_CSEQ.3
|
||||
#usr/share/man/man3/CURLOPT_RTSP_REQUEST.3
|
||||
#usr/share/man/man3/CURLOPT_RTSP_SERVER_CSEQ.3
|
||||
#usr/share/man/man3/CURLOPT_RTSP_SESSION_ID.3
|
||||
#usr/share/man/man3/CURLOPT_RTSP_STREAM_URI.3
|
||||
#usr/share/man/man3/CURLOPT_RTSP_TRANSPORT.3
|
||||
#usr/share/man/man3/CURLOPT_SASL_IR.3
|
||||
#usr/share/man/man3/CURLOPT_SEEKDATA.3
|
||||
#usr/share/man/man3/CURLOPT_SEEKFUNCTION.3
|
||||
#usr/share/man/man3/CURLOPT_SHARE.3
|
||||
#usr/share/man/man3/CURLOPT_SOCKOPTDATA.3
|
||||
#usr/share/man/man3/CURLOPT_SOCKOPTFUNCTION.3
|
||||
#usr/share/man/man3/CURLOPT_SOCKS5_GSSAPI_NEC.3
|
||||
#usr/share/man/man3/CURLOPT_SOCKS5_GSSAPI_SERVICE.3
|
||||
#usr/share/man/man3/CURLOPT_SSH_AUTH_TYPES.3
|
||||
#usr/share/man/man3/CURLOPT_SSH_HOST_PUBLIC_KEY_MD5.3
|
||||
#usr/share/man/man3/CURLOPT_SSH_KEYDATA.3
|
||||
#usr/share/man/man3/CURLOPT_SSH_KEYFUNCTION.3
|
||||
#usr/share/man/man3/CURLOPT_SSH_KNOWNHOSTS.3
|
||||
#usr/share/man/man3/CURLOPT_SSH_PRIVATE_KEYFILE.3
|
||||
#usr/share/man/man3/CURLOPT_SSH_PUBLIC_KEYFILE.3
|
||||
#usr/share/man/man3/CURLOPT_SSLCERT.3
|
||||
#usr/share/man/man3/CURLOPT_SSLCERTTYPE.3
|
||||
#usr/share/man/man3/CURLOPT_SSLENGINE.3
|
||||
#usr/share/man/man3/CURLOPT_SSLENGINE_DEFAULT.3
|
||||
#usr/share/man/man3/CURLOPT_SSLKEY.3
|
||||
#usr/share/man/man3/CURLOPT_SSLKEYTYPE.3
|
||||
#usr/share/man/man3/CURLOPT_SSLVERSION.3
|
||||
#usr/share/man/man3/CURLOPT_SSL_CIPHER_LIST.3
|
||||
#usr/share/man/man3/CURLOPT_SSL_CTX_DATA.3
|
||||
#usr/share/man/man3/CURLOPT_SSL_CTX_FUNCTION.3
|
||||
#usr/share/man/man3/CURLOPT_SSL_ENABLE_ALPN.3
|
||||
#usr/share/man/man3/CURLOPT_SSL_ENABLE_NPN.3
|
||||
#usr/share/man/man3/CURLOPT_SSL_OPTIONS.3
|
||||
#usr/share/man/man3/CURLOPT_SSL_SESSIONID_CACHE.3
|
||||
#usr/share/man/man3/CURLOPT_SSL_VERIFYHOST.3
|
||||
#usr/share/man/man3/CURLOPT_SSL_VERIFYPEER.3
|
||||
#usr/share/man/man3/CURLOPT_STDERR.3
|
||||
#usr/share/man/man3/CURLOPT_TCP_KEEPALIVE.3
|
||||
#usr/share/man/man3/CURLOPT_TCP_KEEPIDLE.3
|
||||
#usr/share/man/man3/CURLOPT_TCP_KEEPINTVL.3
|
||||
#usr/share/man/man3/CURLOPT_TCP_NODELAY.3
|
||||
#usr/share/man/man3/CURLOPT_TELNETOPTIONS.3
|
||||
#usr/share/man/man3/CURLOPT_TFTP_BLKSIZE.3
|
||||
#usr/share/man/man3/CURLOPT_TIMECONDITION.3
|
||||
#usr/share/man/man3/CURLOPT_TIMEOUT.3
|
||||
#usr/share/man/man3/CURLOPT_TIMEOUT_MS.3
|
||||
#usr/share/man/man3/CURLOPT_TIMEVALUE.3
|
||||
#usr/share/man/man3/CURLOPT_TLSAUTH_PASSWORD.3
|
||||
#usr/share/man/man3/CURLOPT_TLSAUTH_TYPE.3
|
||||
#usr/share/man/man3/CURLOPT_TLSAUTH_USERNAME.3
|
||||
#usr/share/man/man3/CURLOPT_TRANSFERTEXT.3
|
||||
#usr/share/man/man3/CURLOPT_TRANSFER_ENCODING.3
|
||||
#usr/share/man/man3/CURLOPT_UNIX_SOCKET_PATH.3
|
||||
#usr/share/man/man3/CURLOPT_UNRESTRICTED_AUTH.3
|
||||
#usr/share/man/man3/CURLOPT_UPLOAD.3
|
||||
#usr/share/man/man3/CURLOPT_URL.3
|
||||
#usr/share/man/man3/CURLOPT_USERAGENT.3
|
||||
#usr/share/man/man3/CURLOPT_USERNAME.3
|
||||
#usr/share/man/man3/CURLOPT_USERPWD.3
|
||||
#usr/share/man/man3/CURLOPT_USE_SSL.3
|
||||
#usr/share/man/man3/CURLOPT_VERBOSE.3
|
||||
#usr/share/man/man3/CURLOPT_WILDCARDMATCH.3
|
||||
#usr/share/man/man3/CURLOPT_WRITEDATA.3
|
||||
#usr/share/man/man3/CURLOPT_WRITEFUNCTION.3
|
||||
#usr/share/man/man3/CURLOPT_XFERINFODATA.3
|
||||
#usr/share/man/man3/CURLOPT_XFERINFOFUNCTION.3
|
||||
#usr/share/man/man3/CURLOPT_XOAUTH2_BEARER.3
|
||||
#usr/share/man/man3/curl_easy_cleanup.3
|
||||
#usr/share/man/man3/curl_easy_duphandle.3
|
||||
#usr/share/man/man3/curl_easy_escape.3
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
etc/rc.d/init.d/cyrus-sasl
|
||||
#usr/include/sasl
|
||||
#usr/include/sasl/hmac-md5.h
|
||||
#usr/include/sasl/md5.h
|
||||
@@ -9,39 +8,44 @@ etc/rc.d/init.d/cyrus-sasl
|
||||
#usr/include/sasl/saslutil.h
|
||||
#usr/lib/libsasl2.la
|
||||
usr/lib/libsasl2.so
|
||||
usr/lib/libsasl2.so.2
|
||||
usr/lib/libsasl2.so.2.0.21
|
||||
usr/lib/libsasl2.so.3
|
||||
usr/lib/libsasl2.so.3.0.0
|
||||
#usr/lib/pkgconfig/libsasl2.pc
|
||||
#usr/lib/sasl2
|
||||
#usr/lib/sasl2/libanonymous.la
|
||||
usr/lib/sasl2/libanonymous.so
|
||||
usr/lib/sasl2/libanonymous.so.2
|
||||
usr/lib/sasl2/libanonymous.so.2.0.21
|
||||
usr/lib/sasl2/libanonymous.so.3
|
||||
usr/lib/sasl2/libanonymous.so.3.0.0
|
||||
#usr/lib/sasl2/libcrammd5.la
|
||||
usr/lib/sasl2/libcrammd5.so
|
||||
usr/lib/sasl2/libcrammd5.so.2
|
||||
usr/lib/sasl2/libcrammd5.so.2.0.21
|
||||
usr/lib/sasl2/libcrammd5.so.3
|
||||
usr/lib/sasl2/libcrammd5.so.3.0.0
|
||||
#usr/lib/sasl2/libdigestmd5.la
|
||||
usr/lib/sasl2/libdigestmd5.so
|
||||
usr/lib/sasl2/libdigestmd5.so.2
|
||||
usr/lib/sasl2/libdigestmd5.so.2.0.21
|
||||
usr/lib/sasl2/libdigestmd5.so.3
|
||||
usr/lib/sasl2/libdigestmd5.so.3.0.0
|
||||
#usr/lib/sasl2/libotp.la
|
||||
usr/lib/sasl2/libotp.so
|
||||
usr/lib/sasl2/libotp.so.2
|
||||
usr/lib/sasl2/libotp.so.2.0.21
|
||||
usr/lib/sasl2/libotp.so.3
|
||||
usr/lib/sasl2/libotp.so.3.0.0
|
||||
#usr/lib/sasl2/libplain.la
|
||||
usr/lib/sasl2/libplain.so
|
||||
usr/lib/sasl2/libplain.so.2
|
||||
usr/lib/sasl2/libplain.so.2.0.21
|
||||
usr/lib/sasl2/libplain.so.3
|
||||
usr/lib/sasl2/libplain.so.3.0.0
|
||||
#usr/lib/sasl2/libsasldb.la
|
||||
usr/lib/sasl2/libsasldb.so
|
||||
usr/lib/sasl2/libsasldb.so.2
|
||||
usr/lib/sasl2/libsasldb.so.2.0.21
|
||||
usr/lib/sasl2/libsasldb.so.3
|
||||
usr/lib/sasl2/libsasldb.so.3.0.0
|
||||
#usr/lib/sasl2/libscram.la
|
||||
usr/lib/sasl2/libscram.so
|
||||
usr/lib/sasl2/libscram.so.3
|
||||
usr/lib/sasl2/libscram.so.3.0.0
|
||||
usr/lib/sasl2/smtpd.conf
|
||||
#usr/man/cat8
|
||||
#usr/man/cat8/saslauthd.8
|
||||
usr/sbin/pluginviewer
|
||||
usr/sbin/saslauthd
|
||||
usr/sbin/sasldblistusers2
|
||||
usr/sbin/saslpasswd2
|
||||
usr/sbin/testsaslauthd
|
||||
#usr/share/man/man3/sasl.3
|
||||
#usr/share/man/man3/sasl_authorize_t.3
|
||||
#usr/share/man/man3/sasl_auxprop.3
|
||||
@@ -64,6 +68,7 @@ usr/sbin/saslpasswd2
|
||||
#usr/share/man/man3/sasl_errdetail.3
|
||||
#usr/share/man/man3/sasl_errors.3
|
||||
#usr/share/man/man3/sasl_errstring.3
|
||||
#usr/share/man/man3/sasl_getconfpath_t.3
|
||||
#usr/share/man/man3/sasl_getopt_t.3
|
||||
#usr/share/man/man3/sasl_getpath_t.3
|
||||
#usr/share/man/man3/sasl_getprop.3
|
||||
@@ -84,6 +89,9 @@ usr/sbin/saslpasswd2
|
||||
#usr/share/man/man3/sasl_setprop.3
|
||||
#usr/share/man/man3/sasl_user_exists.3
|
||||
#usr/share/man/man3/sasl_verifyfile_t.3
|
||||
#usr/share/man/man8/pluginviewer.8
|
||||
#usr/share/man/man8/saslauthd.8
|
||||
#usr/share/man/man8/sasldblistusers2.8
|
||||
#usr/share/man/man8/saslpasswd2.8
|
||||
var/lib/sasl
|
||||
etc/rc.d/init.d/cyrus-sasl
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
#etc/dhcp
|
||||
#etc/dhcp/dhclient.conf
|
||||
#etc/dhcp/dhclient.conf.example
|
||||
etc/dhcp/dhcpd.conf
|
||||
#etc/dhcp/dhcpd.conf.example
|
||||
#usr/bin/omshell
|
||||
#usr/include/dhcpctl
|
||||
#usr/include/dhcpctl/dhcpctl.h
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
#lib/dhcpcd
|
||||
#lib/dhcpcd/dev
|
||||
#lib/dhcpcd/dev/udev.so
|
||||
sbin/dhcpcd
|
||||
#usr/share/man/man5/dhcpcd.conf.5
|
||||
#usr/share/man/man8/dhcpcd-run-hooks.8
|
||||
@@ -6,6 +9,8 @@ var/ipfire/dhcpc/dhcpcd-hooks
|
||||
#var/ipfire/dhcpc/dhcpcd-hooks/01-test
|
||||
#var/ipfire/dhcpc/dhcpcd-hooks/02-dump
|
||||
#var/ipfire/dhcpc/dhcpcd-hooks/10-mtu
|
||||
#var/ipfire/dhcpc/dhcpcd-hooks/10-wpa_supplicant
|
||||
#var/ipfire/dhcpc/dhcpcd-hooks/15-timezone
|
||||
#var/ipfire/dhcpc/dhcpcd-hooks/29-lookup-hostname
|
||||
#var/ipfire/dhcpc/dhcpcd-hooks/30-hostname
|
||||
#var/ipfire/dhcpc/dhcpcd-hooks/70-dhcpcd.exe
|
||||
|
||||
@@ -5,10 +5,11 @@
|
||||
#usr/lib/libexpat.la
|
||||
usr/lib/libexpat.so
|
||||
usr/lib/libexpat.so.1
|
||||
usr/lib/libexpat.so.1.5.0
|
||||
#usr/man/man1/xmlwf.1
|
||||
#usr/share/doc/expat-2.0.0
|
||||
#usr/share/doc/expat-2.0.0/expat.png
|
||||
#usr/share/doc/expat-2.0.0/reference.html
|
||||
#usr/share/doc/expat-2.0.0/style.css
|
||||
#usr/share/doc/expat-2.0.0/valid-xhtml10.png
|
||||
usr/lib/libexpat.so.1.6.0
|
||||
#usr/lib/pkgconfig/expat.pc
|
||||
#usr/share/doc/expat-2.1.0
|
||||
#usr/share/doc/expat-2.1.0/expat.png
|
||||
#usr/share/doc/expat-2.1.0/reference.html
|
||||
#usr/share/doc/expat-2.1.0/style.css
|
||||
#usr/share/doc/expat-2.1.0/valid-xhtml10.png
|
||||
#usr/share/man/man1/xmlwf.1
|
||||
|
||||
243
config/rootfiles/common/flag-icons
Normal file
243
config/rootfiles/common/flag-icons
Normal file
@@ -0,0 +1,243 @@
|
||||
srv/web/ipfire/html/images/flags
|
||||
#srv/web/ipfire/html/images/flags/AD.png
|
||||
#srv/web/ipfire/html/images/flags/AE.png
|
||||
#srv/web/ipfire/html/images/flags/AF.png
|
||||
#srv/web/ipfire/html/images/flags/AG.png
|
||||
#srv/web/ipfire/html/images/flags/AI.png
|
||||
#srv/web/ipfire/html/images/flags/AL.png
|
||||
#srv/web/ipfire/html/images/flags/AM.png
|
||||
#srv/web/ipfire/html/images/flags/AN.png
|
||||
#srv/web/ipfire/html/images/flags/AO.png
|
||||
#srv/web/ipfire/html/images/flags/AQ.png
|
||||
#srv/web/ipfire/html/images/flags/AR.png
|
||||
#srv/web/ipfire/html/images/flags/AS.png
|
||||
#srv/web/ipfire/html/images/flags/AT.png
|
||||
#srv/web/ipfire/html/images/flags/AU.png
|
||||
#srv/web/ipfire/html/images/flags/AW.png
|
||||
#srv/web/ipfire/html/images/flags/AX.png
|
||||
#srv/web/ipfire/html/images/flags/AZ.png
|
||||
#srv/web/ipfire/html/images/flags/BA.png
|
||||
#srv/web/ipfire/html/images/flags/BB.png
|
||||
#srv/web/ipfire/html/images/flags/BD.png
|
||||
#srv/web/ipfire/html/images/flags/BE.png
|
||||
#srv/web/ipfire/html/images/flags/BF.png
|
||||
#srv/web/ipfire/html/images/flags/BG.png
|
||||
#srv/web/ipfire/html/images/flags/BH.png
|
||||
#srv/web/ipfire/html/images/flags/BI.png
|
||||
#srv/web/ipfire/html/images/flags/BJ.png
|
||||
#srv/web/ipfire/html/images/flags/BL.png
|
||||
#srv/web/ipfire/html/images/flags/BM.png
|
||||
#srv/web/ipfire/html/images/flags/BN.png
|
||||
#srv/web/ipfire/html/images/flags/BO.png
|
||||
#srv/web/ipfire/html/images/flags/BR.png
|
||||
#srv/web/ipfire/html/images/flags/BS.png
|
||||
#srv/web/ipfire/html/images/flags/BT.png
|
||||
#srv/web/ipfire/html/images/flags/BW.png
|
||||
#srv/web/ipfire/html/images/flags/BY.png
|
||||
#srv/web/ipfire/html/images/flags/BZ.png
|
||||
#srv/web/ipfire/html/images/flags/CA.png
|
||||
#srv/web/ipfire/html/images/flags/CC.png
|
||||
#srv/web/ipfire/html/images/flags/CD.png
|
||||
#srv/web/ipfire/html/images/flags/CF.png
|
||||
#srv/web/ipfire/html/images/flags/CG.png
|
||||
#srv/web/ipfire/html/images/flags/CH.png
|
||||
#srv/web/ipfire/html/images/flags/CI.png
|
||||
#srv/web/ipfire/html/images/flags/CK.png
|
||||
#srv/web/ipfire/html/images/flags/CL.png
|
||||
#srv/web/ipfire/html/images/flags/CM.png
|
||||
#srv/web/ipfire/html/images/flags/CN.png
|
||||
#srv/web/ipfire/html/images/flags/CO.png
|
||||
#srv/web/ipfire/html/images/flags/CR.png
|
||||
#srv/web/ipfire/html/images/flags/CU.png
|
||||
#srv/web/ipfire/html/images/flags/CV.png
|
||||
#srv/web/ipfire/html/images/flags/CW.png
|
||||
#srv/web/ipfire/html/images/flags/CX.png
|
||||
#srv/web/ipfire/html/images/flags/CY.png
|
||||
#srv/web/ipfire/html/images/flags/CZ.png
|
||||
#srv/web/ipfire/html/images/flags/DE.png
|
||||
#srv/web/ipfire/html/images/flags/DJ.png
|
||||
#srv/web/ipfire/html/images/flags/DK.png
|
||||
#srv/web/ipfire/html/images/flags/DM.png
|
||||
#srv/web/ipfire/html/images/flags/DO.png
|
||||
#srv/web/ipfire/html/images/flags/DZ.png
|
||||
#srv/web/ipfire/html/images/flags/EC.png
|
||||
#srv/web/ipfire/html/images/flags/EE.png
|
||||
#srv/web/ipfire/html/images/flags/EG.png
|
||||
#srv/web/ipfire/html/images/flags/EH.png
|
||||
#srv/web/ipfire/html/images/flags/ER.png
|
||||
#srv/web/ipfire/html/images/flags/ES.png
|
||||
#srv/web/ipfire/html/images/flags/ET.png
|
||||
#srv/web/ipfire/html/images/flags/EU.png
|
||||
#srv/web/ipfire/html/images/flags/FI.png
|
||||
#srv/web/ipfire/html/images/flags/FJ.png
|
||||
#srv/web/ipfire/html/images/flags/FK.png
|
||||
#srv/web/ipfire/html/images/flags/FM.png
|
||||
#srv/web/ipfire/html/images/flags/FO.png
|
||||
#srv/web/ipfire/html/images/flags/FR.png
|
||||
#srv/web/ipfire/html/images/flags/GA.png
|
||||
#srv/web/ipfire/html/images/flags/GB.png
|
||||
#srv/web/ipfire/html/images/flags/GD.png
|
||||
#srv/web/ipfire/html/images/flags/GE.png
|
||||
#srv/web/ipfire/html/images/flags/GG.png
|
||||
#srv/web/ipfire/html/images/flags/GH.png
|
||||
#srv/web/ipfire/html/images/flags/GI.png
|
||||
#srv/web/ipfire/html/images/flags/GL.png
|
||||
#srv/web/ipfire/html/images/flags/GM.png
|
||||
#srv/web/ipfire/html/images/flags/GN.png
|
||||
#srv/web/ipfire/html/images/flags/GQ.png
|
||||
#srv/web/ipfire/html/images/flags/GR.png
|
||||
#srv/web/ipfire/html/images/flags/GS.png
|
||||
#srv/web/ipfire/html/images/flags/GT.png
|
||||
#srv/web/ipfire/html/images/flags/GU.png
|
||||
#srv/web/ipfire/html/images/flags/GW.png
|
||||
#srv/web/ipfire/html/images/flags/GY.png
|
||||
#srv/web/ipfire/html/images/flags/HK.png
|
||||
#srv/web/ipfire/html/images/flags/HN.png
|
||||
#srv/web/ipfire/html/images/flags/HR.png
|
||||
#srv/web/ipfire/html/images/flags/HT.png
|
||||
#srv/web/ipfire/html/images/flags/HU.png
|
||||
#srv/web/ipfire/html/images/flags/IC.png
|
||||
#srv/web/ipfire/html/images/flags/ID.png
|
||||
#srv/web/ipfire/html/images/flags/IE.png
|
||||
#srv/web/ipfire/html/images/flags/IL.png
|
||||
#srv/web/ipfire/html/images/flags/IM.png
|
||||
#srv/web/ipfire/html/images/flags/IN.png
|
||||
#srv/web/ipfire/html/images/flags/IQ.png
|
||||
#srv/web/ipfire/html/images/flags/IR.png
|
||||
#srv/web/ipfire/html/images/flags/IS.png
|
||||
#srv/web/ipfire/html/images/flags/IT.png
|
||||
#srv/web/ipfire/html/images/flags/JE.png
|
||||
#srv/web/ipfire/html/images/flags/JM.png
|
||||
#srv/web/ipfire/html/images/flags/JO.png
|
||||
#srv/web/ipfire/html/images/flags/JP.png
|
||||
#srv/web/ipfire/html/images/flags/KE.png
|
||||
#srv/web/ipfire/html/images/flags/KG.png
|
||||
#srv/web/ipfire/html/images/flags/KH.png
|
||||
#srv/web/ipfire/html/images/flags/KI.png
|
||||
#srv/web/ipfire/html/images/flags/KM.png
|
||||
#srv/web/ipfire/html/images/flags/KN.png
|
||||
#srv/web/ipfire/html/images/flags/KP.png
|
||||
#srv/web/ipfire/html/images/flags/KR.png
|
||||
#srv/web/ipfire/html/images/flags/KW.png
|
||||
#srv/web/ipfire/html/images/flags/KY.png
|
||||
#srv/web/ipfire/html/images/flags/KZ.png
|
||||
#srv/web/ipfire/html/images/flags/LA.png
|
||||
#srv/web/ipfire/html/images/flags/LB.png
|
||||
#srv/web/ipfire/html/images/flags/LC.png
|
||||
#srv/web/ipfire/html/images/flags/LI.png
|
||||
#srv/web/ipfire/html/images/flags/LK.png
|
||||
#srv/web/ipfire/html/images/flags/LR.png
|
||||
#srv/web/ipfire/html/images/flags/LS.png
|
||||
#srv/web/ipfire/html/images/flags/LT.png
|
||||
#srv/web/ipfire/html/images/flags/LU.png
|
||||
#srv/web/ipfire/html/images/flags/LV.png
|
||||
#srv/web/ipfire/html/images/flags/LY.png
|
||||
#srv/web/ipfire/html/images/flags/MA.png
|
||||
#srv/web/ipfire/html/images/flags/MC.png
|
||||
#srv/web/ipfire/html/images/flags/MD.png
|
||||
#srv/web/ipfire/html/images/flags/ME.png
|
||||
#srv/web/ipfire/html/images/flags/MF.png
|
||||
#srv/web/ipfire/html/images/flags/MG.png
|
||||
#srv/web/ipfire/html/images/flags/MH.png
|
||||
#srv/web/ipfire/html/images/flags/MK.png
|
||||
#srv/web/ipfire/html/images/flags/ML.png
|
||||
#srv/web/ipfire/html/images/flags/MM.png
|
||||
#srv/web/ipfire/html/images/flags/MN.png
|
||||
#srv/web/ipfire/html/images/flags/MO.png
|
||||
#srv/web/ipfire/html/images/flags/MP.png
|
||||
#srv/web/ipfire/html/images/flags/MQ.png
|
||||
#srv/web/ipfire/html/images/flags/MR.png
|
||||
#srv/web/ipfire/html/images/flags/MS.png
|
||||
#srv/web/ipfire/html/images/flags/MT.png
|
||||
#srv/web/ipfire/html/images/flags/MU.png
|
||||
#srv/web/ipfire/html/images/flags/MV.png
|
||||
#srv/web/ipfire/html/images/flags/MW.png
|
||||
#srv/web/ipfire/html/images/flags/MX.png
|
||||
#srv/web/ipfire/html/images/flags/MY.png
|
||||
#srv/web/ipfire/html/images/flags/MZ.png
|
||||
#srv/web/ipfire/html/images/flags/NA.png
|
||||
#srv/web/ipfire/html/images/flags/NC.png
|
||||
#srv/web/ipfire/html/images/flags/NE.png
|
||||
#srv/web/ipfire/html/images/flags/NF.png
|
||||
#srv/web/ipfire/html/images/flags/NG.png
|
||||
#srv/web/ipfire/html/images/flags/NI.png
|
||||
#srv/web/ipfire/html/images/flags/NL.png
|
||||
#srv/web/ipfire/html/images/flags/NO.png
|
||||
#srv/web/ipfire/html/images/flags/NP.png
|
||||
#srv/web/ipfire/html/images/flags/NR.png
|
||||
#srv/web/ipfire/html/images/flags/NU.png
|
||||
#srv/web/ipfire/html/images/flags/NZ.png
|
||||
#srv/web/ipfire/html/images/flags/OM.png
|
||||
#srv/web/ipfire/html/images/flags/PA.png
|
||||
#srv/web/ipfire/html/images/flags/PE.png
|
||||
#srv/web/ipfire/html/images/flags/PF.png
|
||||
#srv/web/ipfire/html/images/flags/PG.png
|
||||
#srv/web/ipfire/html/images/flags/PH.png
|
||||
#srv/web/ipfire/html/images/flags/PK.png
|
||||
#srv/web/ipfire/html/images/flags/PL.png
|
||||
#srv/web/ipfire/html/images/flags/PN.png
|
||||
#srv/web/ipfire/html/images/flags/PR.png
|
||||
#srv/web/ipfire/html/images/flags/PS.png
|
||||
#srv/web/ipfire/html/images/flags/PT.png
|
||||
#srv/web/ipfire/html/images/flags/PW.png
|
||||
#srv/web/ipfire/html/images/flags/PY.png
|
||||
#srv/web/ipfire/html/images/flags/QA.png
|
||||
#srv/web/ipfire/html/images/flags/RO.png
|
||||
#srv/web/ipfire/html/images/flags/RS.png
|
||||
#srv/web/ipfire/html/images/flags/RU.png
|
||||
#srv/web/ipfire/html/images/flags/RW.png
|
||||
#srv/web/ipfire/html/images/flags/SA.png
|
||||
#srv/web/ipfire/html/images/flags/SB.png
|
||||
#srv/web/ipfire/html/images/flags/SC.png
|
||||
#srv/web/ipfire/html/images/flags/SD.png
|
||||
#srv/web/ipfire/html/images/flags/SE.png
|
||||
#srv/web/ipfire/html/images/flags/SG.png
|
||||
#srv/web/ipfire/html/images/flags/SH.png
|
||||
#srv/web/ipfire/html/images/flags/SI.png
|
||||
#srv/web/ipfire/html/images/flags/SK.png
|
||||
#srv/web/ipfire/html/images/flags/SL.png
|
||||
#srv/web/ipfire/html/images/flags/SM.png
|
||||
#srv/web/ipfire/html/images/flags/SN.png
|
||||
#srv/web/ipfire/html/images/flags/SO.png
|
||||
#srv/web/ipfire/html/images/flags/SR.png
|
||||
#srv/web/ipfire/html/images/flags/SS.png
|
||||
#srv/web/ipfire/html/images/flags/ST.png
|
||||
#srv/web/ipfire/html/images/flags/SV.png
|
||||
#srv/web/ipfire/html/images/flags/SY.png
|
||||
#srv/web/ipfire/html/images/flags/SZ.png
|
||||
#srv/web/ipfire/html/images/flags/TC.png
|
||||
#srv/web/ipfire/html/images/flags/TD.png
|
||||
#srv/web/ipfire/html/images/flags/TF.png
|
||||
#srv/web/ipfire/html/images/flags/TG.png
|
||||
#srv/web/ipfire/html/images/flags/TH.png
|
||||
#srv/web/ipfire/html/images/flags/TJ.png
|
||||
#srv/web/ipfire/html/images/flags/TK.png
|
||||
#srv/web/ipfire/html/images/flags/TL.png
|
||||
#srv/web/ipfire/html/images/flags/TM.png
|
||||
#srv/web/ipfire/html/images/flags/TN.png
|
||||
#srv/web/ipfire/html/images/flags/TO.png
|
||||
#srv/web/ipfire/html/images/flags/TR.png
|
||||
#srv/web/ipfire/html/images/flags/TT.png
|
||||
#srv/web/ipfire/html/images/flags/TV.png
|
||||
#srv/web/ipfire/html/images/flags/TW.png
|
||||
#srv/web/ipfire/html/images/flags/TZ.png
|
||||
#srv/web/ipfire/html/images/flags/UA.png
|
||||
#srv/web/ipfire/html/images/flags/UG.png
|
||||
#srv/web/ipfire/html/images/flags/US.png
|
||||
#srv/web/ipfire/html/images/flags/UY.png
|
||||
#srv/web/ipfire/html/images/flags/UZ.png
|
||||
#srv/web/ipfire/html/images/flags/VA.png
|
||||
#srv/web/ipfire/html/images/flags/VC.png
|
||||
#srv/web/ipfire/html/images/flags/VE.png
|
||||
#srv/web/ipfire/html/images/flags/VG.png
|
||||
#srv/web/ipfire/html/images/flags/VI.png
|
||||
#srv/web/ipfire/html/images/flags/VN.png
|
||||
#srv/web/ipfire/html/images/flags/VU.png
|
||||
#srv/web/ipfire/html/images/flags/WF.png
|
||||
#srv/web/ipfire/html/images/flags/WS.png
|
||||
#srv/web/ipfire/html/images/flags/YE.png
|
||||
#srv/web/ipfire/html/images/flags/YT.png
|
||||
#srv/web/ipfire/html/images/flags/ZA.png
|
||||
#srv/web/ipfire/html/images/flags/ZM.png
|
||||
#srv/web/ipfire/html/images/flags/ZW.png
|
||||
#srv/web/ipfire/html/images/flags/unknown.png
|
||||
File diff suppressed because it is too large
Load Diff
@@ -63,6 +63,7 @@ etc/rc.d/init.d/mounttmpfs
|
||||
#etc/rc.d/init.d/mysql
|
||||
#etc/rc.d/init.d/netsnmpd
|
||||
etc/rc.d/init.d/network
|
||||
etc/rc.d/init.d/network-trigger
|
||||
etc/rc.d/init.d/network-vlans
|
||||
#etc/rc.d/init.d/networking
|
||||
etc/rc.d/init.d/networking/any
|
||||
@@ -93,6 +94,7 @@ etc/rc.d/init.d/networking/red.up/50-ipsec
|
||||
etc/rc.d/init.d/networking/red.up/50-ovpn
|
||||
etc/rc.d/init.d/networking/red.up/98-leds
|
||||
etc/rc.d/init.d/networking/red.up/99-fireinfo
|
||||
etc/rc.d/init.d/networking/red.up/99-geoip-database
|
||||
etc/rc.d/init.d/networking/red.up/99-pakfire-update
|
||||
etc/rc.d/init.d/networking/wpa_supplicant.exe
|
||||
#etc/rc.d/init.d/nfs-server
|
||||
@@ -234,6 +236,7 @@ etc/rc.d/rcsysinit.d/S70console
|
||||
etc/rc.d/rcsysinit.d/S75firstsetup
|
||||
etc/rc.d/rcsysinit.d/S80localnet
|
||||
etc/rc.d/rcsysinit.d/S85firewall
|
||||
etc/rc.d/rcsysinit.d/S90network-trigger
|
||||
etc/rc.d/rcsysinit.d/S91network-vlans
|
||||
etc/rc.d/rcsysinit.d/S92rngd
|
||||
etc/rc.d/rc3.d/S15fireinfo
|
||||
|
||||
1
config/rootfiles/common/i586/openssl-sse2
Normal file
1
config/rootfiles/common/i586/openssl-sse2
Normal file
@@ -0,0 +1 @@
|
||||
usr/lib/sse2/libcrypto.so.10
|
||||
@@ -1,5 +1,6 @@
|
||||
#etc/logrotate.d
|
||||
etc/logrotate.d/.empty
|
||||
#usr/man/man5/logrotate.conf.5
|
||||
#usr/man/man8/logrotate.8
|
||||
usr/sbin/logrotate
|
||||
var/lib/logrotate.status
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#etc/logwatch
|
||||
etc/logwatch/conf
|
||||
#etc/logwatch/conf/html
|
||||
#etc/logwatch/logwatch.cron
|
||||
#etc/logwatch/conf/ignore.conf
|
||||
#etc/logwatch/conf/logfiles
|
||||
#etc/logwatch/conf/logwatch.conf
|
||||
@@ -18,13 +18,17 @@ usr/sbin/logwatch
|
||||
#usr/share/logwatch/default.conf/html/header.html
|
||||
usr/share/logwatch/default.conf/ignore.conf
|
||||
#usr/share/logwatch/default.conf/logfiles
|
||||
#usr/share/logwatch/default.conf/logfiles/audit_log.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/autorpm.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/bfd.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/cisco.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/citadel.conf
|
||||
usr/share/logwatch/default.conf/logfiles/clam-update.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/clamav.conf
|
||||
usr/share/logwatch/default.conf/logfiles/cron.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/daemon.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/denyhosts.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/dirsrv.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/dnssec.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/dpkg.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/emerge.conf
|
||||
@@ -32,15 +36,20 @@ usr/share/logwatch/default.conf/logfiles/cron.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/exim.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/extreme-networks.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/fail2ban.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/freeradius.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/http-error.conf
|
||||
usr/share/logwatch/default.conf/logfiles/http.conf
|
||||
usr/share/logwatch/default.conf/logfiles/iptables.conf
|
||||
usr/share/logwatch/default.conf/logfiles/kernel.conf
|
||||
usr/share/logwatch/default.conf/logfiles/maillog.conf
|
||||
usr/share/logwatch/default.conf/logfiles/messages.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/mysql-mmm.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/mysql.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/netopia.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/netscreen.conf
|
||||
usr/share/logwatch/default.conf/logfiles/php.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/pix.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/postgresql.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/pureftp.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/qmail-pop3d-current.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/qmail-pop3ds-current.conf
|
||||
@@ -51,13 +60,17 @@ usr/share/logwatch/default.conf/logfiles/resolver.conf
|
||||
usr/share/logwatch/default.conf/logfiles/samba.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/secure.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/sonicwall.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/spamassassin.conf
|
||||
usr/share/logwatch/default.conf/logfiles/syslog.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/tac_acc.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/tivoli-smc.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/up2date.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/vdr.conf
|
||||
usr/share/logwatch/default.conf/logfiles/vsftpd.conf
|
||||
usr/share/logwatch/default.conf/logfiles/windows.conf
|
||||
usr/share/logwatch/default.conf/logfiles/xferlog.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/yum.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/zypp.conf
|
||||
usr/share/logwatch/default.conf/logwatch.conf
|
||||
usr/share/logwatch/default.conf/services
|
||||
#usr/share/logwatch/default.conf/services/afpd.conf
|
||||
@@ -66,8 +79,10 @@ usr/share/logwatch/default.conf/services/amavis.conf
|
||||
#usr/share/logwatch/default.conf/services/audit.conf
|
||||
#usr/share/logwatch/default.conf/services/automount.conf
|
||||
#usr/share/logwatch/default.conf/services/autorpm.conf
|
||||
#usr/share/logwatch/default.conf/services/barracuda.conf
|
||||
#usr/share/logwatch/default.conf/services/bfd.conf
|
||||
#usr/share/logwatch/default.conf/services/cisco.conf
|
||||
#usr/share/logwatch/default.conf/services/citadel.conf
|
||||
usr/share/logwatch/default.conf/services/clam-update.conf
|
||||
#usr/share/logwatch/default.conf/services/clamav-milter.conf
|
||||
usr/share/logwatch/default.conf/services/clamav.conf
|
||||
@@ -75,6 +90,7 @@ usr/share/logwatch/default.conf/services/clamav.conf
|
||||
usr/share/logwatch/default.conf/services/cron.conf
|
||||
#usr/share/logwatch/default.conf/services/denyhosts.conf
|
||||
usr/share/logwatch/default.conf/services/dhcpd.conf
|
||||
#usr/share/logwatch/default.conf/services/dirsrv.conf
|
||||
#usr/share/logwatch/default.conf/services/dnssec.conf
|
||||
#usr/share/logwatch/default.conf/services/dovecot.conf
|
||||
#usr/share/logwatch/default.conf/services/dpkg.conf
|
||||
@@ -86,8 +102,11 @@ usr/share/logwatch/default.conf/services/dhcpd.conf
|
||||
#usr/share/logwatch/default.conf/services/eximstats.conf
|
||||
#usr/share/logwatch/default.conf/services/extreme-networks.conf
|
||||
#usr/share/logwatch/default.conf/services/fail2ban.conf
|
||||
#usr/share/logwatch/default.conf/services/fetchmail.conf
|
||||
#usr/share/logwatch/default.conf/services/freeradius.conf
|
||||
#usr/share/logwatch/default.conf/services/ftpd-messages.conf
|
||||
#usr/share/logwatch/default.conf/services/ftpd-xferlog.conf
|
||||
#usr/share/logwatch/default.conf/services/http-error.conf
|
||||
usr/share/logwatch/default.conf/services/http.conf
|
||||
#usr/share/logwatch/default.conf/services/identd.conf
|
||||
usr/share/logwatch/default.conf/services/imapd.conf
|
||||
@@ -96,13 +115,20 @@ usr/share/logwatch/default.conf/services/init.conf
|
||||
usr/share/logwatch/default.conf/services/ipop3d.conf
|
||||
usr/share/logwatch/default.conf/services/iptables.conf
|
||||
usr/share/logwatch/default.conf/services/kernel.conf
|
||||
#usr/share/logwatch/default.conf/services/knockd.conf
|
||||
#usr/share/logwatch/default.conf/services/lvm.conf
|
||||
#usr/share/logwatch/default.conf/services/mailscanner.conf
|
||||
#usr/share/logwatch/default.conf/services/mdadm.conf
|
||||
#usr/share/logwatch/default.conf/services/mod_security2.conf
|
||||
usr/share/logwatch/default.conf/services/modprobe.conf
|
||||
#usr/share/logwatch/default.conf/services/mountd.conf
|
||||
#usr/share/logwatch/default.conf/services/mysql-mmm.conf
|
||||
#usr/share/logwatch/default.conf/services/mysql.conf
|
||||
#usr/share/logwatch/default.conf/services/named.conf
|
||||
#usr/share/logwatch/default.conf/services/netopia.conf
|
||||
#usr/share/logwatch/default.conf/services/netscreen.conf
|
||||
#usr/share/logwatch/default.conf/services/oidentd.conf
|
||||
#usr/share/logwatch/default.conf/services/omsa.conf
|
||||
usr/share/logwatch/default.conf/services/openvpn.conf
|
||||
usr/share/logwatch/default.conf/services/pam.conf
|
||||
usr/share/logwatch/default.conf/services/pam_pwdb.conf
|
||||
@@ -113,8 +139,10 @@ usr/share/logwatch/default.conf/services/pluto.conf
|
||||
usr/share/logwatch/default.conf/services/pop3.conf
|
||||
#usr/share/logwatch/default.conf/services/portsentry.conf
|
||||
usr/share/logwatch/default.conf/services/postfix.conf
|
||||
#usr/share/logwatch/default.conf/services/postgresql.conf
|
||||
#usr/share/logwatch/default.conf/services/pound.conf
|
||||
#usr/share/logwatch/default.conf/services/proftpd-messages.conf
|
||||
#usr/share/logwatch/default.conf/services/puppet.conf
|
||||
#usr/share/logwatch/default.conf/services/pureftpd.conf
|
||||
#usr/share/logwatch/default.conf/services/qmail-pop3d.conf
|
||||
#usr/share/logwatch/default.conf/services/qmail-pop3ds.conf
|
||||
@@ -123,6 +151,7 @@ usr/share/logwatch/default.conf/services/postfix.conf
|
||||
#usr/share/logwatch/default.conf/services/qmail.conf
|
||||
#usr/share/logwatch/default.conf/services/raid.conf
|
||||
usr/share/logwatch/default.conf/services/resolver.conf
|
||||
#usr/share/logwatch/default.conf/services/rsyslogd.conf
|
||||
#usr/share/logwatch/default.conf/services/rt314.conf
|
||||
usr/share/logwatch/default.conf/services/samba.conf
|
||||
usr/share/logwatch/default.conf/services/saslauthd.conf
|
||||
@@ -134,23 +163,30 @@ usr/share/logwatch/default.conf/services/scsi.conf
|
||||
#usr/share/logwatch/default.conf/services/slon.conf
|
||||
#usr/share/logwatch/default.conf/services/smartd.conf
|
||||
#usr/share/logwatch/default.conf/services/sonicwall.conf
|
||||
#usr/share/logwatch/default.conf/services/spamassassin.conf
|
||||
usr/share/logwatch/default.conf/services/sshd.conf
|
||||
usr/share/logwatch/default.conf/services/sshd2.conf
|
||||
#usr/share/logwatch/default.conf/services/stunnel.conf
|
||||
usr/share/logwatch/default.conf/services/sudo.conf
|
||||
#usr/share/logwatch/default.conf/services/syslog-ng.conf
|
||||
usr/share/logwatch/default.conf/services/syslogd.conf
|
||||
#usr/share/logwatch/default.conf/services/tac_acc.conf
|
||||
#usr/share/logwatch/default.conf/services/tivoli-smc.conf
|
||||
#usr/share/logwatch/default.conf/services/up2date.conf
|
||||
#usr/share/logwatch/default.conf/services/vdr.conf
|
||||
#usr/share/logwatch/default.conf/services/vpopmail.conf
|
||||
usr/share/logwatch/default.conf/services/vsftpd.conf
|
||||
usr/share/logwatch/default.conf/services/windows.conf
|
||||
#usr/share/logwatch/default.conf/services/xntpd.conf
|
||||
#usr/share/logwatch/default.conf/services/yum.conf
|
||||
#usr/share/logwatch/default.conf/services/zypp.conf
|
||||
usr/share/logwatch/default.conf/services/zz-disk_space.conf
|
||||
#usr/share/logwatch/default.conf/services/zz-fortune.conf
|
||||
#usr/share/logwatch/default.conf/services/zz-lm_sensors.conf
|
||||
usr/share/logwatch/default.conf/services/zz-network.conf
|
||||
usr/share/logwatch/default.conf/services/zz-runtime.conf
|
||||
#usr/share/logwatch/default.conf/services/zz-sys.conf
|
||||
#usr/share/logwatch/default.conf/services/zz-zfs.conf
|
||||
#usr/share/logwatch/dist.conf
|
||||
usr/share/logwatch/dist.conf/logfiles
|
||||
usr/share/logwatch/dist.conf/services
|
||||
@@ -184,8 +220,10 @@ usr/share/logwatch/scripts/services/amavis
|
||||
#usr/share/logwatch/scripts/services/audit
|
||||
#usr/share/logwatch/scripts/services/automount
|
||||
#usr/share/logwatch/scripts/services/autorpm
|
||||
#usr/share/logwatch/scripts/services/barracuda
|
||||
#usr/share/logwatch/scripts/services/bfd
|
||||
#usr/share/logwatch/scripts/services/cisco
|
||||
#usr/share/logwatch/scripts/services/citadel
|
||||
usr/share/logwatch/scripts/services/clam-update
|
||||
usr/share/logwatch/scripts/services/clamav
|
||||
#usr/share/logwatch/scripts/services/clamav-milter
|
||||
@@ -194,6 +232,7 @@ usr/share/logwatch/scripts/services/cron
|
||||
#usr/share/logwatch/scripts/services/denyhosts
|
||||
usr/share/logwatch/scripts/services/dhcpd
|
||||
usr/share/logwatch/scripts/services/dialup
|
||||
#usr/share/logwatch/scripts/services/dirsrv
|
||||
#usr/share/logwatch/scripts/services/dnssec
|
||||
#usr/share/logwatch/scripts/services/dovecot
|
||||
#usr/share/logwatch/scripts/services/dpkg
|
||||
@@ -205,9 +244,12 @@ usr/share/logwatch/scripts/services/dialup
|
||||
#usr/share/logwatch/scripts/services/eximstats
|
||||
#usr/share/logwatch/scripts/services/extreme-networks
|
||||
#usr/share/logwatch/scripts/services/fail2ban
|
||||
#usr/share/logwatch/scripts/services/fetchmail
|
||||
#usr/share/logwatch/scripts/services/freeradius
|
||||
#usr/share/logwatch/scripts/services/ftpd-messages
|
||||
#usr/share/logwatch/scripts/services/ftpd-xferlog
|
||||
usr/share/logwatch/scripts/services/http
|
||||
#usr/share/logwatch/scripts/services/http-error
|
||||
#usr/share/logwatch/scripts/services/identd
|
||||
usr/share/logwatch/scripts/services/imapd
|
||||
#usr/share/logwatch/scripts/services/in.qpopper
|
||||
@@ -215,13 +257,20 @@ usr/share/logwatch/scripts/services/init
|
||||
usr/share/logwatch/scripts/services/ipop3d
|
||||
usr/share/logwatch/scripts/services/iptables
|
||||
usr/share/logwatch/scripts/services/kernel
|
||||
#usr/share/logwatch/scripts/services/knockd
|
||||
#usr/share/logwatch/scripts/services/lvm
|
||||
#usr/share/logwatch/scripts/services/mailscanner
|
||||
#usr/share/logwatch/scripts/services/mdadm
|
||||
#usr/share/logwatch/scripts/services/mod_security2
|
||||
usr/share/logwatch/scripts/services/modprobe
|
||||
#usr/share/logwatch/scripts/services/mountd
|
||||
#usr/share/logwatch/scripts/services/mysql
|
||||
#usr/share/logwatch/scripts/services/mysql-mmm
|
||||
#usr/share/logwatch/scripts/services/named
|
||||
#usr/share/logwatch/scripts/services/netopia
|
||||
#usr/share/logwatch/scripts/services/netscreen
|
||||
#usr/share/logwatch/scripts/services/oidentd
|
||||
#usr/share/logwatch/scripts/services/omsa
|
||||
usr/share/logwatch/scripts/services/openvpn
|
||||
usr/share/logwatch/scripts/services/pam
|
||||
usr/share/logwatch/scripts/services/pam_pwdb
|
||||
@@ -232,8 +281,10 @@ usr/share/logwatch/scripts/services/pluto
|
||||
usr/share/logwatch/scripts/services/pop3
|
||||
#usr/share/logwatch/scripts/services/portsentry
|
||||
usr/share/logwatch/scripts/services/postfix
|
||||
#usr/share/logwatch/scripts/services/postgresql
|
||||
#usr/share/logwatch/scripts/services/pound
|
||||
#usr/share/logwatch/scripts/services/proftpd-messages
|
||||
#usr/share/logwatch/scripts/services/puppet
|
||||
#usr/share/logwatch/scripts/services/pureftpd
|
||||
#usr/share/logwatch/scripts/services/qmail
|
||||
#usr/share/logwatch/scripts/services/qmail-pop3d
|
||||
@@ -242,6 +293,7 @@ usr/share/logwatch/scripts/services/postfix
|
||||
#usr/share/logwatch/scripts/services/qmail-smtpd
|
||||
#usr/share/logwatch/scripts/services/raid
|
||||
#usr/share/logwatch/scripts/services/resolver
|
||||
#usr/share/logwatch/scripts/services/rsyslogd
|
||||
#usr/share/logwatch/scripts/services/rt314
|
||||
usr/share/logwatch/scripts/services/samba
|
||||
usr/share/logwatch/scripts/services/saslauthd
|
||||
@@ -253,23 +305,30 @@ usr/share/logwatch/scripts/services/scsi
|
||||
#usr/share/logwatch/scripts/services/slon
|
||||
#usr/share/logwatch/scripts/services/smartd
|
||||
#usr/share/logwatch/scripts/services/sonicwall
|
||||
#usr/share/logwatch/scripts/services/spamassassin
|
||||
usr/share/logwatch/scripts/services/sshd
|
||||
usr/share/logwatch/scripts/services/sshd2
|
||||
#usr/share/logwatch/scripts/services/stunnel
|
||||
usr/share/logwatch/scripts/services/sudo
|
||||
#usr/share/logwatch/scripts/services/syslog-ng
|
||||
usr/share/logwatch/scripts/services/syslogd
|
||||
#usr/share/logwatch/scripts/services/tac_acc
|
||||
#usr/share/logwatch/scripts/services/tivoli-smc
|
||||
#usr/share/logwatch/scripts/services/up2date
|
||||
#usr/share/logwatch/scripts/services/vdr
|
||||
#usr/share/logwatch/scripts/services/vpopmail
|
||||
usr/share/logwatch/scripts/services/vsftpd
|
||||
usr/share/logwatch/scripts/services/windows
|
||||
#usr/share/logwatch/scripts/services/xntpd
|
||||
#usr/share/logwatch/scripts/services/yum
|
||||
#usr/share/logwatch/scripts/services/zypp
|
||||
usr/share/logwatch/scripts/services/zz-disk_space
|
||||
#usr/share/logwatch/scripts/services/zz-fortune
|
||||
#usr/share/logwatch/scripts/services/zz-lm_sensors
|
||||
usr/share/logwatch/scripts/services/zz-network
|
||||
usr/share/logwatch/scripts/services/zz-runtime
|
||||
#usr/share/logwatch/scripts/services/zz-sys
|
||||
#usr/share/logwatch/scripts/services/zz-zfs
|
||||
#usr/share/logwatch/scripts/shared
|
||||
usr/share/logwatch/scripts/shared/applybinddate
|
||||
usr/share/logwatch/scripts/shared/applyeurodate
|
||||
@@ -289,6 +348,11 @@ usr/share/logwatch/scripts/shared/onlyservice
|
||||
usr/share/logwatch/scripts/shared/remove
|
||||
usr/share/logwatch/scripts/shared/removeheaders
|
||||
usr/share/logwatch/scripts/shared/removeservice
|
||||
#usr/share/man/man1/amavis-logwatch.1
|
||||
#usr/share/man/man1/postfix-logwatch.1
|
||||
#usr/share/man/man5/ignore.conf.5
|
||||
#usr/share/man/man5/logwatch.conf.5
|
||||
#usr/share/man/man5/override.conf.5
|
||||
#usr/share/man/man8/logwatch.8
|
||||
var/cache/logwatch
|
||||
var/log/logwatch
|
||||
|
||||
@@ -3,6 +3,7 @@ usr/local/bin/addonctrl
|
||||
usr/local/bin/backupctrl
|
||||
#usr/local/bin/clamavctrl
|
||||
usr/local/bin/collectdctrl
|
||||
usr/local/bin/ddnsctrl
|
||||
usr/local/bin/dhcpctrl
|
||||
usr/local/bin/dnsmasqctrl
|
||||
usr/local/bin/extrahdctrl
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
usr/lib/libcrypto.so.0.9.8
|
||||
usr/lib/libssl.so.0.9.8
|
||||
8
config/rootfiles/common/perl-Text-CSV_XS
Normal file
8
config/rootfiles/common/perl-Text-CSV_XS
Normal file
@@ -0,0 +1,8 @@
|
||||
#usr/lib/perl5/site_perl/5.12.3/MACHINE-linux-thread-multi/Text
|
||||
usr/lib/perl5/site_perl/5.12.3/MACHINE-linux-thread-multi/Text/CSV_XS.pm
|
||||
#usr/lib/perl5/site_perl/5.12.3/MACHINE-linux-thread-multi/auto/Text
|
||||
#usr/lib/perl5/site_perl/5.12.3/MACHINE-linux-thread-multi/auto/Text/CSV_XS
|
||||
#usr/lib/perl5/site_perl/5.12.3/MACHINE-linux-thread-multi/auto/Text/CSV_XS/.packlist
|
||||
#usr/lib/perl5/site_perl/5.12.3/MACHINE-linux-thread-multi/auto/Text/CSV_XS/CSV_XS.bs
|
||||
usr/lib/perl5/site_perl/5.12.3/MACHINE-linux-thread-multi/auto/Text/CSV_XS/CSV_XS.so
|
||||
#usr/share/man/man3/Text::CSV_XS.3
|
||||
@@ -34,7 +34,6 @@ usr/lib/squid/basic_smb_auth
|
||||
usr/lib/squid/basic_smb_auth.sh
|
||||
#usr/lib/squid/cachemgr.cgi
|
||||
usr/lib/squid/cert_tool
|
||||
usr/lib/squid/cert_valid.pl
|
||||
usr/lib/squid/digest_file_auth
|
||||
usr/lib/squid/digest_ldap_auth
|
||||
usr/lib/squid/diskd
|
||||
|
||||
@@ -101,6 +101,8 @@ usr/local/bin/timecheck
|
||||
usr/local/bin/timezone-transition
|
||||
usr/local/bin/update-bootloader
|
||||
usr/local/bin/update-lang-cache
|
||||
usr/local/bin/xt_geoip_build
|
||||
usr/local/bin/xt_geoip_update
|
||||
#usr/local/include
|
||||
#usr/local/lib
|
||||
#usr/local/lib/sse2
|
||||
@@ -120,6 +122,7 @@ usr/local/bin/update-lang-cache
|
||||
#usr/local/share/man/man8
|
||||
#usr/local/share/misc
|
||||
#usr/local/share/terminfo
|
||||
#usr/local/share/xt_geoip
|
||||
#usr/local/share/zoneinfo
|
||||
#usr/local/src
|
||||
#usr/sbin
|
||||
@@ -142,6 +145,7 @@ usr/share/doc/licenses/GPLv3
|
||||
#usr/share/man/man8
|
||||
#usr/share/misc
|
||||
#usr/share/terminfo
|
||||
#usr/share/xt_geoip
|
||||
#usr/share/zoneinfo
|
||||
#var
|
||||
#var/cache
|
||||
|
||||
@@ -16,8 +16,10 @@ etc/strongswan.d/charon-logging.conf
|
||||
etc/strongswan.d/charon.conf
|
||||
etc/strongswan.d/charon/aes.conf
|
||||
etc/strongswan.d/charon/attr.conf
|
||||
etc/strongswan.d/charon/ccm.conf
|
||||
etc/strongswan.d/charon/cmac.conf
|
||||
etc/strongswan.d/charon/constraints.conf
|
||||
etc/strongswan.d/charon/ctr.conf
|
||||
etc/strongswan.d/charon/curl.conf
|
||||
etc/strongswan.d/charon/des.conf
|
||||
etc/strongswan.d/charon/dhcp.conf
|
||||
@@ -30,6 +32,7 @@ etc/strongswan.d/charon/eap-tls.conf
|
||||
etc/strongswan.d/charon/eap-ttls.conf
|
||||
etc/strongswan.d/charon/farp.conf
|
||||
etc/strongswan.d/charon/fips-prf.conf
|
||||
etc/strongswan.d/charon/gcm.conf
|
||||
etc/strongswan.d/charon/gcrypt.conf
|
||||
etc/strongswan.d/charon/gmp.conf
|
||||
etc/strongswan.d/charon/hmac.conf
|
||||
@@ -93,8 +96,10 @@ usr/lib/ipsec/libtls.so.0.0.0
|
||||
#usr/lib/ipsec/plugins
|
||||
usr/lib/ipsec/plugins/libstrongswan-aes.so
|
||||
usr/lib/ipsec/plugins/libstrongswan-attr.so
|
||||
usr/lib/ipsec/plugins/libstrongswan-ccm.so
|
||||
usr/lib/ipsec/plugins/libstrongswan-cmac.so
|
||||
usr/lib/ipsec/plugins/libstrongswan-constraints.so
|
||||
usr/lib/ipsec/plugins/libstrongswan-ctr.so
|
||||
usr/lib/ipsec/plugins/libstrongswan-curl.so
|
||||
usr/lib/ipsec/plugins/libstrongswan-dhcp.so
|
||||
usr/lib/ipsec/plugins/libstrongswan-des.so
|
||||
@@ -107,6 +112,7 @@ usr/lib/ipsec/plugins/libstrongswan-eap-tls.so
|
||||
usr/lib/ipsec/plugins/libstrongswan-eap-ttls.so
|
||||
usr/lib/ipsec/plugins/libstrongswan-farp.so
|
||||
usr/lib/ipsec/plugins/libstrongswan-fips-prf.so
|
||||
usr/lib/ipsec/plugins/libstrongswan-gcm.so
|
||||
usr/lib/ipsec/plugins/libstrongswan-gcrypt.so
|
||||
usr/lib/ipsec/plugins/libstrongswan-gmp.so
|
||||
usr/lib/ipsec/plugins/libstrongswan-hmac.so
|
||||
@@ -141,7 +147,6 @@ usr/lib/ipsec/plugins/libstrongswan-xcbc.so
|
||||
#usr/libexec/ipsec
|
||||
usr/libexec/ipsec/_copyright
|
||||
usr/libexec/ipsec/_updown
|
||||
usr/libexec/ipsec/_updown_espmark
|
||||
usr/libexec/ipsec/charon
|
||||
usr/libexec/ipsec/scepclient
|
||||
usr/libexec/ipsec/starter
|
||||
@@ -163,7 +168,6 @@ usr/sbin/ipsec
|
||||
#usr/share/man/man5/ipsec.secrets.5
|
||||
#usr/share/man/man5/strongswan.conf.5
|
||||
#usr/share/man/man8/_updown.8
|
||||
#usr/share/man/man8/_updown_espmark.8
|
||||
#usr/share/man/man8/ipsec.8
|
||||
#usr/share/man/man8/openac.8
|
||||
#usr/share/man/man8/scepclient.8
|
||||
@@ -173,8 +177,10 @@ usr/sbin/ipsec
|
||||
#usr/share/strongswan/templates/config/plugins
|
||||
#usr/share/strongswan/templates/config/plugins/aes.conf
|
||||
#usr/share/strongswan/templates/config/plugins/attr.conf
|
||||
#usr/share/strongswan/templates/config/plugins/ccm.conf
|
||||
#usr/share/strongswan/templates/config/plugins/cmac.conf
|
||||
#usr/share/strongswan/templates/config/plugins/constraints.conf
|
||||
#usr/share/strongswan/templates/config/plugins/ctr.conf
|
||||
#usr/share/strongswan/templates/config/plugins/curl.conf
|
||||
#usr/share/strongswan/templates/config/plugins/des.conf
|
||||
#usr/share/strongswan/templates/config/plugins/dhcp.conf
|
||||
@@ -187,6 +193,7 @@ usr/sbin/ipsec
|
||||
#usr/share/strongswan/templates/config/plugins/eap-ttls.conf
|
||||
#usr/share/strongswan/templates/config/plugins/farp.conf
|
||||
#usr/share/strongswan/templates/config/plugins/fips-prf.conf
|
||||
#usr/share/strongswan/templates/config/plugins/gcm.conf
|
||||
#usr/share/strongswan/templates/config/plugins/gcrypt.conf
|
||||
#usr/share/strongswan/templates/config/plugins/gmp.conf
|
||||
#usr/share/strongswan/templates/config/plugins/hmac.conf
|
||||
|
||||
@@ -2,7 +2,6 @@ bin/udevadm
|
||||
etc/modprobe.d/blacklist.conf
|
||||
etc/udev
|
||||
#etc/udev/rules.d
|
||||
#etc/udev/rules.d/30-persistent-network.rules
|
||||
#etc/udev/rules.d/55-lfs.rules
|
||||
#etc/udev/rules.d/81-cdrom.rules
|
||||
#etc/udev/rules.d/83-cdrom-symlinks.rules
|
||||
@@ -29,6 +28,7 @@ lib/udev
|
||||
#lib/udev/hwdb.d/60-keyboard.hwdb
|
||||
#lib/udev/init-net-rules.sh
|
||||
#lib/udev/mtd_probe
|
||||
#lib/udev/network-hotplug-rename
|
||||
#lib/udev/rule_generator.functions
|
||||
#lib/udev/rules.d
|
||||
#lib/udev/rules.d/25-alsa.rules
|
||||
@@ -37,6 +37,7 @@ lib/udev
|
||||
#lib/udev/rules.d/50-udev-default.rules
|
||||
#lib/udev/rules.d/60-cdrom_id.rules
|
||||
#lib/udev/rules.d/60-keyboard.rules
|
||||
#lib/udev/rules.d/60-net.rules
|
||||
#lib/udev/rules.d/60-persistent-alsa.rules
|
||||
#lib/udev/rules.d/60-persistent-input.rules
|
||||
#lib/udev/rules.d/60-persistent-serial.rules
|
||||
|
||||
358
config/rootfiles/common/web-user-interface
Normal file
358
config/rootfiles/common/web-user-interface
Normal file
@@ -0,0 +1,358 @@
|
||||
srv/web/ipfire/cgi-bin/aliases.cgi
|
||||
#srv/web/ipfire/cgi-bin/asterisk
|
||||
#srv/web/ipfire/cgi-bin/asterisk/calls.cgi
|
||||
#srv/web/ipfire/cgi-bin/asterisk/conf
|
||||
#srv/web/ipfire/cgi-bin/asterisk/conf.cgi
|
||||
#srv/web/ipfire/cgi-bin/asterisk/conf/telbook.conf
|
||||
#srv/web/ipfire/cgi-bin/asterisk/status.cgi
|
||||
srv/web/ipfire/cgi-bin/atm-status.cgi
|
||||
srv/web/ipfire/cgi-bin/backup.cgi
|
||||
srv/web/ipfire/cgi-bin/bluetooth.cgi
|
||||
srv/web/ipfire/cgi-bin/chpasswd.cgi
|
||||
srv/web/ipfire/cgi-bin/connections.cgi
|
||||
srv/web/ipfire/cgi-bin/connscheduler.cgi
|
||||
srv/web/ipfire/cgi-bin/country.cgi
|
||||
srv/web/ipfire/cgi-bin/credits.cgi
|
||||
srv/web/ipfire/cgi-bin/ddns.cgi
|
||||
srv/web/ipfire/cgi-bin/dhcp.cgi
|
||||
srv/web/ipfire/cgi-bin/dns.cgi
|
||||
srv/web/ipfire/cgi-bin/dnsforward.cgi
|
||||
srv/web/ipfire/cgi-bin/entropy.cgi
|
||||
srv/web/ipfire/cgi-bin/extrahd.cgi
|
||||
srv/web/ipfire/cgi-bin/fireinfo.cgi
|
||||
srv/web/ipfire/cgi-bin/firewall.cgi
|
||||
srv/web/ipfire/cgi-bin/fwhosts.cgi
|
||||
srv/web/ipfire/cgi-bin/geoip-block.cgi
|
||||
srv/web/ipfire/cgi-bin/gpl.cgi
|
||||
srv/web/ipfire/cgi-bin/gui.cgi
|
||||
srv/web/ipfire/cgi-bin/hardwaregraphs.cgi
|
||||
srv/web/ipfire/cgi-bin/hosts.cgi
|
||||
srv/web/ipfire/cgi-bin/ids.cgi
|
||||
#srv/web/ipfire/cgi-bin/imspector.cgi
|
||||
srv/web/ipfire/cgi-bin/index.cgi
|
||||
srv/web/ipfire/cgi-bin/ipinfo.cgi
|
||||
srv/web/ipfire/cgi-bin/iptables.cgi
|
||||
srv/web/ipfire/cgi-bin/logs.cgi
|
||||
srv/web/ipfire/cgi-bin/logs.cgi/calamaris.dat
|
||||
srv/web/ipfire/cgi-bin/logs.cgi/config.dat
|
||||
srv/web/ipfire/cgi-bin/logs.cgi/firewalllog.dat
|
||||
srv/web/ipfire/cgi-bin/logs.cgi/firewalllogcountry.dat
|
||||
srv/web/ipfire/cgi-bin/logs.cgi/firewalllogip.dat
|
||||
srv/web/ipfire/cgi-bin/logs.cgi/firewalllogport.dat
|
||||
srv/web/ipfire/cgi-bin/logs.cgi/ids.dat
|
||||
srv/web/ipfire/cgi-bin/logs.cgi/log.dat
|
||||
srv/web/ipfire/cgi-bin/logs.cgi/proxylog.dat
|
||||
srv/web/ipfire/cgi-bin/logs.cgi/showrequestfromcountry.dat
|
||||
srv/web/ipfire/cgi-bin/logs.cgi/showrequestfromip.dat
|
||||
srv/web/ipfire/cgi-bin/logs.cgi/showrequestfromport.dat
|
||||
srv/web/ipfire/cgi-bin/logs.cgi/summary.dat
|
||||
srv/web/ipfire/cgi-bin/logs.cgi/urlfilter.dat
|
||||
srv/web/ipfire/cgi-bin/mac.cgi
|
||||
srv/web/ipfire/cgi-bin/mdstat.cgi
|
||||
srv/web/ipfire/cgi-bin/media.cgi
|
||||
srv/web/ipfire/cgi-bin/memory.cgi
|
||||
srv/web/ipfire/cgi-bin/modem-status.cgi
|
||||
srv/web/ipfire/cgi-bin/modem.cgi
|
||||
#srv/web/ipfire/cgi-bin/mpfire.cgi
|
||||
srv/web/ipfire/cgi-bin/netexternal.cgi
|
||||
srv/web/ipfire/cgi-bin/netinternal.cgi
|
||||
srv/web/ipfire/cgi-bin/netother.cgi
|
||||
srv/web/ipfire/cgi-bin/netovpnrw.cgi
|
||||
srv/web/ipfire/cgi-bin/netovpnsrv.cgi
|
||||
srv/web/ipfire/cgi-bin/optionsfw.cgi
|
||||
srv/web/ipfire/cgi-bin/ovpnmain.cgi
|
||||
srv/web/ipfire/cgi-bin/p2p-block.cgi
|
||||
srv/web/ipfire/cgi-bin/pakfire.cgi
|
||||
srv/web/ipfire/cgi-bin/pppsetup.cgi
|
||||
srv/web/ipfire/cgi-bin/proxy.cgi
|
||||
srv/web/ipfire/cgi-bin/qos.cgi
|
||||
srv/web/ipfire/cgi-bin/remote.cgi
|
||||
srv/web/ipfire/cgi-bin/routing.cgi
|
||||
#srv/web/ipfire/cgi-bin/samba.cgi
|
||||
#srv/web/ipfire/cgi-bin/sambahlp.cgi
|
||||
srv/web/ipfire/cgi-bin/services.cgi
|
||||
srv/web/ipfire/cgi-bin/shutdown.cgi
|
||||
srv/web/ipfire/cgi-bin/speed.cgi
|
||||
srv/web/ipfire/cgi-bin/system.cgi
|
||||
srv/web/ipfire/cgi-bin/time.cgi
|
||||
#srv/web/ipfire/cgi-bin/tor.cgi
|
||||
srv/web/ipfire/cgi-bin/traffic.cgi
|
||||
#srv/web/ipfire/cgi-bin/tripwire.cgi
|
||||
srv/web/ipfire/cgi-bin/updatexlrator.cgi
|
||||
#srv/web/ipfire/cgi-bin/upnp.cgi
|
||||
srv/web/ipfire/cgi-bin/urlfilter.cgi
|
||||
srv/web/ipfire/cgi-bin/vpnmain.cgi
|
||||
srv/web/ipfire/cgi-bin/wakeonlan.cgi
|
||||
srv/web/ipfire/cgi-bin/webaccess.cgi
|
||||
srv/web/ipfire/cgi-bin/wireless.cgi
|
||||
srv/web/ipfire/cgi-bin/wirelessclient.cgi
|
||||
srv/web/ipfire/cgi-bin/wlanap.cgi
|
||||
#srv/web/ipfire/html
|
||||
srv/web/ipfire/html/blob.gif
|
||||
srv/web/ipfire/html/clwarn.cgi
|
||||
srv/web/ipfire/html/dial.cgi
|
||||
srv/web/ipfire/html/favicon.ico
|
||||
#srv/web/ipfire/html/images
|
||||
srv/web/ipfire/html/images/IPFire.png
|
||||
srv/web/ipfire/html/images/add.gif
|
||||
srv/web/ipfire/html/images/addblue.gif
|
||||
srv/web/ipfire/html/images/addgreen.gif
|
||||
srv/web/ipfire/html/images/address-book-new.png
|
||||
srv/web/ipfire/html/images/application-certificate.png
|
||||
srv/web/ipfire/html/images/application-x-executable.png
|
||||
srv/web/ipfire/html/images/applications-accessories.png
|
||||
srv/web/ipfire/html/images/applications-development.png
|
||||
srv/web/ipfire/html/images/applications-games.png
|
||||
srv/web/ipfire/html/images/applications-graphics.png
|
||||
srv/web/ipfire/html/images/applications-internet.png
|
||||
srv/web/ipfire/html/images/applications-multimedia.png
|
||||
srv/web/ipfire/html/images/applications-office.png
|
||||
srv/web/ipfire/html/images/applications-other.png
|
||||
srv/web/ipfire/html/images/applications-system.png
|
||||
srv/web/ipfire/html/images/appointment-new.png
|
||||
srv/web/ipfire/html/images/audio-volume-high-red.png
|
||||
srv/web/ipfire/html/images/audio-volume-high.png
|
||||
srv/web/ipfire/html/images/audio-volume-low-red.png
|
||||
srv/web/ipfire/html/images/audio-volume-low.png
|
||||
srv/web/ipfire/html/images/audio-x-generic-red.png
|
||||
srv/web/ipfire/html/images/audio-x-generic.png
|
||||
srv/web/ipfire/html/images/background.gif
|
||||
srv/web/ipfire/html/images/bookmark-new.png
|
||||
srv/web/ipfire/html/images/clock.gif
|
||||
srv/web/ipfire/html/images/computer.png
|
||||
srv/web/ipfire/html/images/delete.gif
|
||||
srv/web/ipfire/html/images/dialog-error.png
|
||||
srv/web/ipfire/html/images/dialog-information.png
|
||||
srv/web/ipfire/html/images/dialog-warning.png
|
||||
srv/web/ipfire/html/images/dns_link.png
|
||||
srv/web/ipfire/html/images/document-new.png
|
||||
srv/web/ipfire/html/images/document-open.png
|
||||
srv/web/ipfire/html/images/document-print-preview.png
|
||||
srv/web/ipfire/html/images/document-print.png
|
||||
srv/web/ipfire/html/images/document-properties.png
|
||||
srv/web/ipfire/html/images/document-save-as.png
|
||||
srv/web/ipfire/html/images/document-save.png
|
||||
srv/web/ipfire/html/images/down.gif
|
||||
srv/web/ipfire/html/images/drive-harddisk.png
|
||||
srv/web/ipfire/html/images/drive-optical.png
|
||||
srv/web/ipfire/html/images/drive-removable-media.png
|
||||
srv/web/ipfire/html/images/edit-find.png
|
||||
srv/web/ipfire/html/images/edit-redo.png
|
||||
srv/web/ipfire/html/images/edit.gif
|
||||
srv/web/ipfire/html/images/floppy.gif
|
||||
srv/web/ipfire/html/images/folder-drag-accept.png
|
||||
srv/web/ipfire/html/images/folder-new.png
|
||||
srv/web/ipfire/html/images/folder-open.png
|
||||
srv/web/ipfire/html/images/folder-remote.png
|
||||
srv/web/ipfire/html/images/folder-saved-search.png
|
||||
srv/web/ipfire/html/images/folder-visiting.png
|
||||
srv/web/ipfire/html/images/folder.png
|
||||
srv/web/ipfire/html/images/format-indent-less.png
|
||||
srv/web/ipfire/html/images/format-indent-more.png
|
||||
srv/web/ipfire/html/images/format-justify-center.png
|
||||
srv/web/ipfire/html/images/format-justify-fill.png
|
||||
srv/web/ipfire/html/images/format-justify-left.png
|
||||
srv/web/ipfire/html/images/format-justify-right.png
|
||||
srv/web/ipfire/html/images/forward.gif
|
||||
srv/web/ipfire/html/images/go-bottom.png
|
||||
srv/web/ipfire/html/images/go-down.png
|
||||
srv/web/ipfire/html/images/go-first.png
|
||||
srv/web/ipfire/html/images/go-home.png
|
||||
srv/web/ipfire/html/images/go-jump.png
|
||||
srv/web/ipfire/html/images/go-last.png
|
||||
srv/web/ipfire/html/images/go-next.png
|
||||
srv/web/ipfire/html/images/go-previous.png
|
||||
srv/web/ipfire/html/images/go-top.png
|
||||
srv/web/ipfire/html/images/go-up.png
|
||||
srv/web/ipfire/html/images/help-browser.png
|
||||
srv/web/ipfire/html/images/help.gif
|
||||
srv/web/ipfire/html/images/image-loading.png
|
||||
srv/web/ipfire/html/images/image-missing.png
|
||||
srv/web/ipfire/html/images/image-x-generic.png
|
||||
srv/web/ipfire/html/images/indicator.gif
|
||||
srv/web/ipfire/html/images/info.gif
|
||||
srv/web/ipfire/html/images/input-gaming.png
|
||||
srv/web/ipfire/html/images/input-keyboard.png
|
||||
srv/web/ipfire/html/images/input-mouse.png
|
||||
srv/web/ipfire/html/images/internet-group-chat.png
|
||||
srv/web/ipfire/html/images/internet-mail.png
|
||||
srv/web/ipfire/html/images/internet-news-reader.png
|
||||
srv/web/ipfire/html/images/internet-web-browser.png
|
||||
srv/web/ipfire/html/images/list-add.png
|
||||
srv/web/ipfire/html/images/list-remove.png
|
||||
srv/web/ipfire/html/images/mail-attachment.png
|
||||
srv/web/ipfire/html/images/mail-forward.png
|
||||
srv/web/ipfire/html/images/mail-mark-junk.png
|
||||
srv/web/ipfire/html/images/mail-mark-not-junk.png
|
||||
srv/web/ipfire/html/images/mail-message-new.png
|
||||
srv/web/ipfire/html/images/mail-reply-all.png
|
||||
srv/web/ipfire/html/images/mail-reply-sender.png
|
||||
srv/web/ipfire/html/images/mail-send-receive.png
|
||||
srv/web/ipfire/html/images/media-flash.png
|
||||
srv/web/ipfire/html/images/media-floppy.png
|
||||
srv/web/ipfire/html/images/media-optical.png
|
||||
srv/web/ipfire/html/images/media-playback-start-all.png
|
||||
srv/web/ipfire/html/images/media-playback-start.png
|
||||
srv/web/ipfire/html/images/media-playback-stop.png
|
||||
srv/web/ipfire/html/images/media-repeat.png
|
||||
srv/web/ipfire/html/images/media-resume.png
|
||||
srv/web/ipfire/html/images/media-shuffle.png
|
||||
srv/web/ipfire/html/images/media-skip-backward.png
|
||||
srv/web/ipfire/html/images/media-skip-forward.png
|
||||
srv/web/ipfire/html/images/mpfire
|
||||
srv/web/ipfire/html/images/mpfire/box.png
|
||||
srv/web/ipfire/html/images/network-error.png
|
||||
srv/web/ipfire/html/images/network-idle.png
|
||||
srv/web/ipfire/html/images/network-offline.png
|
||||
srv/web/ipfire/html/images/network-receive.png
|
||||
srv/web/ipfire/html/images/network-server.png
|
||||
srv/web/ipfire/html/images/network-transmit-receive.png
|
||||
srv/web/ipfire/html/images/network-transmit.png
|
||||
srv/web/ipfire/html/images/network-wired.png
|
||||
srv/web/ipfire/html/images/network-wireless-encrypted.png
|
||||
srv/web/ipfire/html/images/network-wireless.png
|
||||
srv/web/ipfire/html/images/network-workgroup.png
|
||||
srv/web/ipfire/html/images/network.png
|
||||
srv/web/ipfire/html/images/null.gif
|
||||
srv/web/ipfire/html/images/off.gif
|
||||
srv/web/ipfire/html/images/on.gif
|
||||
srv/web/ipfire/html/images/openvpn.gif
|
||||
srv/web/ipfire/html/images/openvpn.png
|
||||
srv/web/ipfire/html/images/package-x-generic.png
|
||||
srv/web/ipfire/html/images/printer-error.png
|
||||
srv/web/ipfire/html/images/printer.png
|
||||
srv/web/ipfire/html/images/process-stop.png
|
||||
srv/web/ipfire/html/images/process-working.png
|
||||
srv/web/ipfire/html/images/reload.gif
|
||||
srv/web/ipfire/html/images/start-here.png
|
||||
srv/web/ipfire/html/images/stock_down-16.png
|
||||
srv/web/ipfire/html/images/stock_ok.png
|
||||
srv/web/ipfire/html/images/stock_stop.png
|
||||
srv/web/ipfire/html/images/stock_up-16.png
|
||||
srv/web/ipfire/html/images/system-file-manager.png
|
||||
srv/web/ipfire/html/images/system-installer.png
|
||||
srv/web/ipfire/html/images/system-lock-screen.png
|
||||
srv/web/ipfire/html/images/system-log-out.png
|
||||
srv/web/ipfire/html/images/system-search.png
|
||||
srv/web/ipfire/html/images/system-shutdown.png
|
||||
srv/web/ipfire/html/images/system-software-update.png
|
||||
srv/web/ipfire/html/images/system-users.png
|
||||
srv/web/ipfire/html/images/tab-new.png
|
||||
srv/web/ipfire/html/images/table-header.gif
|
||||
srv/web/ipfire/html/images/text-html.png
|
||||
srv/web/ipfire/html/images/text-x-generic-template.png
|
||||
srv/web/ipfire/html/images/text-x-generic.png
|
||||
srv/web/ipfire/html/images/text-x-script.png
|
||||
srv/web/ipfire/html/images/tux.png
|
||||
srv/web/ipfire/html/images/up.gif
|
||||
srv/web/ipfire/html/images/updbooster
|
||||
srv/web/ipfire/html/images/updbooster/updxl-globe.gif
|
||||
srv/web/ipfire/html/images/updbooster/updxl-gr.gif
|
||||
srv/web/ipfire/html/images/updbooster/updxl-led-blue.gif
|
||||
srv/web/ipfire/html/images/updbooster/updxl-led-gray.gif
|
||||
srv/web/ipfire/html/images/updbooster/updxl-led-green.gif
|
||||
srv/web/ipfire/html/images/updbooster/updxl-led-red.gif
|
||||
srv/web/ipfire/html/images/updbooster/updxl-led-yellow.gif
|
||||
srv/web/ipfire/html/images/updbooster/updxl-rd.gif
|
||||
srv/web/ipfire/html/images/updbooster/updxl-src-adobe.gif
|
||||
srv/web/ipfire/html/images/updbooster/updxl-src-apple.gif
|
||||
srv/web/ipfire/html/images/updbooster/updxl-src-avast.gif
|
||||
srv/web/ipfire/html/images/updbooster/updxl-src-avg.gif
|
||||
srv/web/ipfire/html/images/updbooster/updxl-src-avira.gif
|
||||
srv/web/ipfire/html/images/updbooster/updxl-src-kaspersky.gif
|
||||
srv/web/ipfire/html/images/updbooster/updxl-src-linux.gif
|
||||
srv/web/ipfire/html/images/updbooster/updxl-src-microsoft.gif
|
||||
srv/web/ipfire/html/images/updbooster/updxl-src-symantec.gif
|
||||
srv/web/ipfire/html/images/updbooster/updxl-src-trendmicro.gif
|
||||
srv/web/ipfire/html/images/updbooster/updxl-src-unknown.gif
|
||||
srv/web/ipfire/html/images/updbooster/updxl-src-windows.gif
|
||||
srv/web/ipfire/html/images/updbooster/updxl-yl.gif
|
||||
srv/web/ipfire/html/images/urlfilter
|
||||
srv/web/ipfire/html/images/urlfilter/1x1.gif
|
||||
srv/web/ipfire/html/images/urlfilter/bg_cool_tux.jpg
|
||||
srv/web/ipfire/html/images/urlfilter/bgcool.gif
|
||||
srv/web/ipfire/html/images/urlfilter/copy.gif
|
||||
srv/web/ipfire/html/images/urlfilter/gmg_tux_ip_fire.gif
|
||||
srv/web/ipfire/html/images/urlfilter/led-green.gif
|
||||
srv/web/ipfire/html/images/urlfilter/led-red.gif
|
||||
srv/web/ipfire/html/images/user-home.png
|
||||
srv/web/ipfire/html/images/user-multiple.png
|
||||
srv/web/ipfire/html/images/user-option-add.png
|
||||
srv/web/ipfire/html/images/user-option-remove.png
|
||||
srv/web/ipfire/html/images/user-trash-full.png
|
||||
srv/web/ipfire/html/images/user-trash.png
|
||||
srv/web/ipfire/html/images/utilities-system-monitor.png
|
||||
srv/web/ipfire/html/images/utilities-terminal.png
|
||||
srv/web/ipfire/html/images/view-fullscreen.png
|
||||
srv/web/ipfire/html/images/view-refresh.png
|
||||
srv/web/ipfire/html/images/wakeup.gif
|
||||
srv/web/ipfire/html/images/window-new.png
|
||||
srv/web/ipfire/html/include
|
||||
srv/web/ipfire/html/include/snortupdateutility.js
|
||||
srv/web/ipfire/html/index.cgi
|
||||
srv/web/ipfire/html/redirect-templates
|
||||
srv/web/ipfire/html/redirect-templates/legacy
|
||||
srv/web/ipfire/html/redirect-templates/legacy/template.html
|
||||
srv/web/ipfire/html/redirect.cgi
|
||||
srv/web/ipfire/html/themes
|
||||
srv/web/ipfire/html/themes/darkdos
|
||||
srv/web/ipfire/html/themes/darkdos/images
|
||||
srv/web/ipfire/html/themes/darkdos/images/IPFire.png
|
||||
srv/web/ipfire/html/themes/darkdos/images/b1.gif
|
||||
srv/web/ipfire/html/themes/darkdos/images/b2.gif
|
||||
srv/web/ipfire/html/themes/darkdos/images/b3.gif
|
||||
srv/web/ipfire/html/themes/darkdos/images/b4.gif
|
||||
srv/web/ipfire/html/themes/darkdos/images/b5.gif
|
||||
srv/web/ipfire/html/themes/darkdos/images/b6.gif
|
||||
srv/web/ipfire/html/themes/darkdos/images/spacer.gif
|
||||
srv/web/ipfire/html/themes/darkdos/include
|
||||
srv/web/ipfire/html/themes/darkdos/include/colors.txt
|
||||
srv/web/ipfire/html/themes/darkdos/include/functions.pl
|
||||
srv/web/ipfire/html/themes/darkdos/include/style.css
|
||||
srv/web/ipfire/html/themes/ipfire
|
||||
srv/web/ipfire/html/themes/ipfire-legacy
|
||||
srv/web/ipfire/html/themes/ipfire-legacy/images
|
||||
srv/web/ipfire/html/themes/ipfire-legacy/images/n1.gif
|
||||
srv/web/ipfire/html/themes/ipfire-legacy/images/n2.gif
|
||||
srv/web/ipfire/html/themes/ipfire-legacy/images/n3.gif
|
||||
srv/web/ipfire/html/themes/ipfire-legacy/images/n4.gif
|
||||
srv/web/ipfire/html/themes/ipfire-legacy/images/n5.gif
|
||||
srv/web/ipfire/html/themes/ipfire-legacy/images/n6.gif
|
||||
srv/web/ipfire/html/themes/ipfire-legacy/images/spacer.gif
|
||||
srv/web/ipfire/html/themes/ipfire-legacy/include
|
||||
srv/web/ipfire/html/themes/ipfire-legacy/include/colors.txt
|
||||
srv/web/ipfire/html/themes/ipfire-legacy/include/functions.pl
|
||||
srv/web/ipfire/html/themes/ipfire-legacy/include/style.css
|
||||
srv/web/ipfire/html/themes/ipfire-rounded
|
||||
srv/web/ipfire/html/themes/ipfire/images
|
||||
srv/web/ipfire/html/themes/ipfire/images/n2.gif
|
||||
srv/web/ipfire/html/themes/ipfire/images/n3.gif
|
||||
srv/web/ipfire/html/themes/ipfire/images/n5.gif
|
||||
srv/web/ipfire/html/themes/ipfire/images/n6.gif
|
||||
srv/web/ipfire/html/themes/ipfire/images/tux2.png
|
||||
srv/web/ipfire/html/themes/ipfire/include
|
||||
srv/web/ipfire/html/themes/ipfire/include/colors.txt
|
||||
srv/web/ipfire/html/themes/ipfire/include/css
|
||||
srv/web/ipfire/html/themes/ipfire/include/css/style-rounded.css
|
||||
srv/web/ipfire/html/themes/ipfire/include/css/style.css
|
||||
srv/web/ipfire/html/themes/ipfire/include/functions.pl
|
||||
srv/web/ipfire/html/themes/ipfire/include/js
|
||||
srv/web/ipfire/html/themes/ipfire/include/js/refreshInetInfo.js
|
||||
srv/web/ipfire/html/themes/maniac
|
||||
srv/web/ipfire/html/themes/maniac/images
|
||||
srv/web/ipfire/html/themes/maniac/images/IPFire.png
|
||||
srv/web/ipfire/html/themes/maniac/images/Thumbs.db
|
||||
srv/web/ipfire/html/themes/maniac/images/b1.gif
|
||||
srv/web/ipfire/html/themes/maniac/images/b2.gif
|
||||
srv/web/ipfire/html/themes/maniac/images/b3.gif
|
||||
srv/web/ipfire/html/themes/maniac/images/b4.gif
|
||||
srv/web/ipfire/html/themes/maniac/images/b5.gif
|
||||
srv/web/ipfire/html/themes/maniac/images/b6.gif
|
||||
srv/web/ipfire/html/themes/maniac/images/spacer.gif
|
||||
srv/web/ipfire/html/themes/maniac/include
|
||||
srv/web/ipfire/html/themes/maniac/include/colors.txt
|
||||
srv/web/ipfire/html/themes/maniac/include/functions.pl
|
||||
srv/web/ipfire/html/themes/maniac/include/style.css
|
||||
var/updatecache
|
||||
var/updatecache/download
|
||||
var/updatecache/metadata
|
||||
33
config/rootfiles/common/xtables-addons
Normal file
33
config/rootfiles/common/xtables-addons
Normal file
@@ -0,0 +1,33 @@
|
||||
lib/xtables/libxt_ACCOUNT.so
|
||||
lib/xtables/libxt_CHAOS.so
|
||||
lib/xtables/libxt_DELUDE.so
|
||||
lib/xtables/libxt_DHCPMAC.so
|
||||
lib/xtables/libxt_DNETMAP.so
|
||||
lib/xtables/libxt_ECHO.so
|
||||
lib/xtables/libxt_IPMARK.so
|
||||
lib/xtables/libxt_LOGMARK.so
|
||||
lib/xtables/libxt_TARPIT.so
|
||||
lib/xtables/libxt_condition.so
|
||||
lib/xtables/libxt_dhcpmac.so
|
||||
lib/xtables/libxt_fuzzy.so
|
||||
lib/xtables/libxt_geoip.so
|
||||
lib/xtables/libxt_iface.so
|
||||
lib/xtables/libxt_ipp2p.so
|
||||
lib/xtables/libxt_ipv4options.so
|
||||
lib/xtables/libxt_length2.so
|
||||
lib/xtables/libxt_lscan.so
|
||||
lib/xtables/libxt_pknock.so
|
||||
lib/xtables/libxt_psd.so
|
||||
lib/xtables/libxt_quota2.so
|
||||
#usr/lib/libxt_ACCOUNT_cl.la
|
||||
#usr/lib/libxt_ACCOUNT_cl.so
|
||||
usr/lib/libxt_ACCOUNT_cl.so.0
|
||||
usr/lib/libxt_ACCOUNT_cl.so.0.0.0
|
||||
#usr/libexec/xtables-addons
|
||||
usr/libexec/xtables-addons/xt_geoip_build
|
||||
usr/libexec/xtables-addons/xt_geoip_dl
|
||||
usr/sbin/iptaccount
|
||||
#usr/share/man/man1/xt_geoip_build.1
|
||||
#usr/share/man/man1/xt_geoip_dl.1
|
||||
#usr/share/man/man8/iptaccount.8
|
||||
#usr/share/man/man8/xtables-addons.8
|
||||
@@ -33,7 +33,7 @@ usr/bin/xzmore
|
||||
#usr/include/lzma/hardware.h
|
||||
#usr/include/lzma/index.h
|
||||
#usr/include/lzma/index_hash.h
|
||||
#usr/include/lzma/lzma.h
|
||||
#usr/include/lzma/lzma12.h
|
||||
#usr/include/lzma/stream_flags.h
|
||||
#usr/include/lzma/version.h
|
||||
#usr/include/lzma/vli.h
|
||||
@@ -41,7 +41,7 @@ usr/bin/xzmore
|
||||
#usr/lib/liblzma.la
|
||||
usr/lib/liblzma.so
|
||||
usr/lib/liblzma.so.5
|
||||
usr/lib/liblzma.so.5.0.5
|
||||
usr/lib/liblzma.so.5.2.1
|
||||
#usr/lib/pkgconfig/liblzma.pc
|
||||
#usr/share/doc/xz
|
||||
#usr/share/doc/xz/AUTHORS
|
||||
@@ -56,6 +56,7 @@ usr/lib/liblzma.so.5.0.5
|
||||
#usr/share/doc/xz/examples/01_compress_easy.c
|
||||
#usr/share/doc/xz/examples/02_decompress.c
|
||||
#usr/share/doc/xz/examples/03_compress_custom.c
|
||||
#usr/share/doc/xz/examples/04_compress_easy_mt.c
|
||||
#usr/share/doc/xz/examples/Makefile
|
||||
#usr/share/doc/xz/examples_old
|
||||
#usr/share/doc/xz/examples_old/xz_pipe_comp.c
|
||||
@@ -69,6 +70,7 @@ usr/lib/liblzma.so.5.0.5
|
||||
#usr/share/locale/fr/LC_MESSAGES/xz.mo
|
||||
#usr/share/locale/it/LC_MESSAGES/xz.mo
|
||||
#usr/share/locale/pl/LC_MESSAGES/xz.mo
|
||||
#usr/share/locale/vi/LC_MESSAGES/xz.mo
|
||||
#usr/share/man/man1/lzcat.1
|
||||
#usr/share/man/man1/lzcmp.1
|
||||
#usr/share/man/man1/lzdiff.1
|
||||
|
||||
28
config/rootfiles/core/90/exclude
Normal file
28
config/rootfiles/core/90/exclude
Normal file
@@ -0,0 +1,28 @@
|
||||
boot/config.txt
|
||||
etc/collectd.custom
|
||||
etc/ipsec.conf
|
||||
etc/ipsec.secrets
|
||||
etc/ipsec.user.conf
|
||||
etc/ipsec.user.secrets
|
||||
etc/localtime
|
||||
etc/rc.d/rcsysinit.d/S19checkfstab
|
||||
etc/rc.d/rcsysinit.d/S70console
|
||||
etc/shadow
|
||||
etc/ssh/ssh_config
|
||||
etc/ssh/sshd_config
|
||||
etc/ssl/openssl.cnf
|
||||
etc/sudoers
|
||||
etc/sysconfig/firewall.local
|
||||
etc/sysconfig/modules
|
||||
etc/sysconfig/rc.local
|
||||
etc/udev/rules.d/30-persistent-network.rules
|
||||
srv/web/ipfire/html/proxy.pac
|
||||
var/ipfire/firewall/geoipblock
|
||||
var/ipfire/fwhosts/custmgeoipgrp
|
||||
var/ipfire/ovpn/ccd.conf
|
||||
var/ipfire/ovpn/ccdroute
|
||||
var/ipfire/ovpn/ccdroute2
|
||||
var/ipfire/time
|
||||
var/log/cache
|
||||
var/state/dhcp/dhcpd.leases
|
||||
var/updatecache
|
||||
1
config/rootfiles/core/90/filelists/Locale-Country
Symbolic link
1
config/rootfiles/core/90/filelists/Locale-Country
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/Locale-Country
|
||||
1
config/rootfiles/core/90/filelists/apache2
Symbolic link
1
config/rootfiles/core/90/filelists/apache2
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/apache2
|
||||
1
config/rootfiles/core/90/filelists/armv5tel/glibc
Symbolic link
1
config/rootfiles/core/90/filelists/armv5tel/glibc
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../../common/armv5tel/glibc
|
||||
1
config/rootfiles/core/90/filelists/armv5tel/linux-kirkwood
Symbolic link
1
config/rootfiles/core/90/filelists/armv5tel/linux-kirkwood
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../../common/armv5tel/linux-kirkwood
|
||||
1
config/rootfiles/core/90/filelists/armv5tel/linux-multi
Symbolic link
1
config/rootfiles/core/90/filelists/armv5tel/linux-multi
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../../common/armv5tel/linux-multi
|
||||
1
config/rootfiles/core/90/filelists/armv5tel/linux-rpi
Symbolic link
1
config/rootfiles/core/90/filelists/armv5tel/linux-rpi
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../../common/armv5tel/linux-rpi
|
||||
1
config/rootfiles/core/90/filelists/curl
Symbolic link
1
config/rootfiles/core/90/filelists/curl
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/curl
|
||||
1
config/rootfiles/core/90/filelists/cyrus-sasl
Symbolic link
1
config/rootfiles/core/90/filelists/cyrus-sasl
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/cyrus-sasl
|
||||
1
config/rootfiles/core/90/filelists/ddns
Symbolic link
1
config/rootfiles/core/90/filelists/ddns
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/ddns
|
||||
1
config/rootfiles/core/90/filelists/dhcp
Symbolic link
1
config/rootfiles/core/90/filelists/dhcp
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/dhcp
|
||||
1
config/rootfiles/core/90/filelists/dhcpcd
Symbolic link
1
config/rootfiles/core/90/filelists/dhcpcd
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/dhcpcd
|
||||
1
config/rootfiles/core/90/filelists/dnsmasq
Symbolic link
1
config/rootfiles/core/90/filelists/dnsmasq
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/dnsmasq
|
||||
1
config/rootfiles/core/90/filelists/dracut
Symbolic link
1
config/rootfiles/core/90/filelists/dracut
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/dracut
|
||||
1
config/rootfiles/core/90/filelists/expat
Symbolic link
1
config/rootfiles/core/90/filelists/expat
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/expat
|
||||
36
config/rootfiles/core/90/filelists/files
Normal file
36
config/rootfiles/core/90/filelists/files
Normal file
@@ -0,0 +1,36 @@
|
||||
etc/system-release
|
||||
etc/issue
|
||||
etc/rc.d/init.d/firewall
|
||||
etc/rc.d/init.d/network-trigger
|
||||
etc/rc.d/init.d/networking/functions.network
|
||||
etc/rc.d/init.d/networking/red.up/99-geoip-database
|
||||
etc/rc.d/rcsysinit.d/S90network-trigger
|
||||
srv/web/ipfire/cgi-bin/country.cgi
|
||||
srv/web/ipfire/cgi-bin/ddns.cgi
|
||||
srv/web/ipfire/cgi-bin/firewall.cgi
|
||||
srv/web/ipfire/cgi-bin/fwhosts.cgi
|
||||
srv/web/ipfire/cgi-bin/geoip-block.cgi
|
||||
srv/web/ipfire/cgi-bin/index.cgi
|
||||
srv/web/ipfire/cgi-bin/logs.cgi/firewalllog.dat
|
||||
srv/web/ipfire/cgi-bin/logs.cgi/firewalllogcountry.dat
|
||||
srv/web/ipfire/cgi-bin/logs.cgi/firewalllogip.dat
|
||||
srv/web/ipfire/cgi-bin/netovpnsrv.cgi
|
||||
srv/web/ipfire/cgi-bin/ovpnmain.cgi
|
||||
srv/web/ipfire/cgi-bin/vpnmain.cgi
|
||||
srv/web/ipfire/html/themes/darkdos/include/style.css
|
||||
srv/web/ipfire/html/themes/ipfire-legacy/include/style.css
|
||||
srv/web/ipfire/html/themes/ipfire/include/css/style.css
|
||||
srv/web/ipfire/html/themes/maniac/include/style.css
|
||||
usr/lib/firewall/firewall-lib.pl
|
||||
usr/lib/firewall/rules.pl
|
||||
usr/local/bin/backupiso
|
||||
usr/local/bin/ddnsctrl
|
||||
usr/local/bin/ipsecctrl
|
||||
usr/local/bin/xt_geoip_build
|
||||
usr/local/bin/xt_geoip_update
|
||||
var/ipfire/general-functions.pl
|
||||
var/ipfire/geoip-functions.pl
|
||||
var/ipfire/header.pl
|
||||
var/ipfire/backup/include
|
||||
var/ipfire/langs
|
||||
var/ipfire/menu.d/50-firewall.menu
|
||||
1
config/rootfiles/core/90/filelists/fireinfo
Symbolic link
1
config/rootfiles/core/90/filelists/fireinfo
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/fireinfo
|
||||
1
config/rootfiles/core/90/filelists/flag-icons
Symbolic link
1
config/rootfiles/core/90/filelists/flag-icons
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/flag-icons
|
||||
1
config/rootfiles/core/90/filelists/groff
Symbolic link
1
config/rootfiles/core/90/filelists/groff
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/groff
|
||||
1
config/rootfiles/core/90/filelists/i586/acpid
Symbolic link
1
config/rootfiles/core/90/filelists/i586/acpid
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../../common/i586/acpid
|
||||
1
config/rootfiles/core/90/filelists/i586/glibc
Symbolic link
1
config/rootfiles/core/90/filelists/i586/glibc
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../../common/i586/glibc
|
||||
1
config/rootfiles/core/90/filelists/i586/linux
Symbolic link
1
config/rootfiles/core/90/filelists/i586/linux
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../../common/i586/linux
|
||||
1
config/rootfiles/core/90/filelists/i586/linux-initrd
Symbolic link
1
config/rootfiles/core/90/filelists/i586/linux-initrd
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../../common/i586/linux-initrd
|
||||
1
config/rootfiles/core/90/filelists/i586/openssl-sse2
Symbolic link
1
config/rootfiles/core/90/filelists/i586/openssl-sse2
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../../common/i586/openssl-sse2
|
||||
1
config/rootfiles/core/90/filelists/iptables
Symbolic link
1
config/rootfiles/core/90/filelists/iptables
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/iptables
|
||||
1
config/rootfiles/core/90/filelists/iputils
Symbolic link
1
config/rootfiles/core/90/filelists/iputils
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/iputils
|
||||
1
config/rootfiles/core/90/filelists/libjpeg
Symbolic link
1
config/rootfiles/core/90/filelists/libjpeg
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/libjpeg
|
||||
1
config/rootfiles/core/90/filelists/logrotate
Symbolic link
1
config/rootfiles/core/90/filelists/logrotate
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/logrotate
|
||||
1
config/rootfiles/core/90/filelists/logwatch
Symbolic link
1
config/rootfiles/core/90/filelists/logwatch
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/logwatch
|
||||
1
config/rootfiles/core/90/filelists/openssl
Symbolic link
1
config/rootfiles/core/90/filelists/openssl
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/openssl
|
||||
19
config/rootfiles/core/90/filelists/openssl-0.9.8-files
Normal file
19
config/rootfiles/core/90/filelists/openssl-0.9.8-files
Normal file
@@ -0,0 +1,19 @@
|
||||
lib/security/pam_mysql.so
|
||||
usr/lib/gnupg/gpgkeys_ldap
|
||||
usr/lib/gnupg/gpgkeys_hkp
|
||||
usr/lib/gnupg/gpgkeys_curl
|
||||
usr/lib/apache/libphp5.so
|
||||
usr/lib/squid/digest_ldap_auth
|
||||
usr/lib/squid/basic_ldap_auth
|
||||
usr/lib/squid/ext_kerberos_ldap_group_acl
|
||||
usr/lib/squid/ext_edirectory_userip_acl
|
||||
usr/lib/squid/ext_ldap_group_acl
|
||||
usr/lib/python2.7/lib-dynload/_ssl.so
|
||||
usr/lib/python2.7/lib-dynload/_hashlib.so
|
||||
usr/lib/collectd/write_http.so
|
||||
usr/lib/collectd/ascent.so
|
||||
usr/lib/collectd/curl_xml.so
|
||||
usr/lib/collectd/apache.so
|
||||
usr/lib/collectd/bind.so
|
||||
usr/lib/collectd/curl.so
|
||||
usr/bin/php
|
||||
1
config/rootfiles/core/90/filelists/perl-Text-CSV_XS
Symbolic link
1
config/rootfiles/core/90/filelists/perl-Text-CSV_XS
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/perl-Text-CSV_XS
|
||||
1
config/rootfiles/core/90/filelists/squid
Symbolic link
1
config/rootfiles/core/90/filelists/squid
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/squid
|
||||
1
config/rootfiles/core/90/filelists/strongswan
Symbolic link
1
config/rootfiles/core/90/filelists/strongswan
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/strongswan
|
||||
1
config/rootfiles/core/90/filelists/tzdata
Symbolic link
1
config/rootfiles/core/90/filelists/tzdata
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/tzdata
|
||||
1
config/rootfiles/core/90/filelists/udev
Symbolic link
1
config/rootfiles/core/90/filelists/udev
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/udev
|
||||
1
config/rootfiles/core/90/filelists/wpa_supplicant
Symbolic link
1
config/rootfiles/core/90/filelists/wpa_supplicant
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/wpa_supplicant
|
||||
1
config/rootfiles/core/90/filelists/xtables-addons
Symbolic link
1
config/rootfiles/core/90/filelists/xtables-addons
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/xtables-addons
|
||||
1
config/rootfiles/core/90/filelists/xz
Symbolic link
1
config/rootfiles/core/90/filelists/xz
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/xz
|
||||
1
config/rootfiles/core/90/meta
Normal file
1
config/rootfiles/core/90/meta
Normal file
@@ -0,0 +1 @@
|
||||
DEPS=""
|
||||
305
config/rootfiles/core/90/update.sh
Normal file
305
config/rootfiles/core/90/update.sh
Normal file
@@ -0,0 +1,305 @@
|
||||
#!/bin/bash
|
||||
############################################################################
|
||||
# #
|
||||
# This file is part of the IPFire Firewall. #
|
||||
# #
|
||||
# IPFire is free software; you can redistribute it and/or modify #
|
||||
# it under the terms of the GNU General Public License as published by #
|
||||
# the Free Software Foundation; either version 3 of the License, or #
|
||||
# (at your option) any later version. #
|
||||
# #
|
||||
# IPFire is distributed in the hope that it will be useful, #
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
||||
# GNU General Public License for more details. #
|
||||
# #
|
||||
# You should have received a copy of the GNU General Public License #
|
||||
# along with IPFire; if not, write to the Free Software #
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
||||
# #
|
||||
# Copyright (C) 2014 IPFire-Team <info@ipfire.org>. #
|
||||
# #
|
||||
############################################################################
|
||||
#
|
||||
. /opt/pakfire/lib/functions.sh
|
||||
/usr/local/bin/backupctrl exclude >/dev/null 2>&1
|
||||
|
||||
|
||||
function find_device() {
|
||||
local mountpoint="${1}"
|
||||
|
||||
local root
|
||||
local dev mp fs flags rest
|
||||
while read -r dev mp fs flags rest; do
|
||||
# Skip unwanted entries
|
||||
[ "${dev}" = "rootfs" ] && continue
|
||||
|
||||
if [ "${mp}" = "${mountpoint}" ] && [ -b "${dev}" ]; then
|
||||
root="$(basename "${dev}")"
|
||||
break
|
||||
fi
|
||||
done < /proc/mounts
|
||||
|
||||
# Get the actual device from the partition that holds /
|
||||
while [ -n "${root}" ]; do
|
||||
if [ -e "/sys/block/${root}" ]; then
|
||||
echo "${root}"
|
||||
return 0
|
||||
fi
|
||||
|
||||
# Remove last character
|
||||
root="${root::-1}"
|
||||
done
|
||||
|
||||
return 1
|
||||
}
|
||||
|
||||
|
||||
#
|
||||
# Remove old core updates from pakfire cache to save space...
|
||||
core=90
|
||||
for (( i=1; i<=${core}; i++ ))
|
||||
do
|
||||
rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
|
||||
done
|
||||
|
||||
#
|
||||
# Do some sanity checks.
|
||||
case $(uname -r) in
|
||||
*-ipfire-versatile )
|
||||
/usr/bin/logger -p syslog.emerg -t ipfire \
|
||||
"core-update-${core}: ERROR cannot update. versatile support is dropped."
|
||||
# Report no error to pakfire. So it does not try to install it again.
|
||||
exit 0
|
||||
;;
|
||||
*-ipfire* )
|
||||
# Ok.
|
||||
;;
|
||||
* )
|
||||
/usr/bin/logger -p syslog.emerg -t ipfire \
|
||||
"core-update-${core}: ERROR cannot update. No IPFire Kernel."
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
|
||||
#
|
||||
#
|
||||
KVER="xxxKVERxxx"
|
||||
|
||||
# Check diskspace on root
|
||||
ROOTSPACE=`df / -Pk | sed "s| * | |g" | cut -d" " -f4 | tail -n 1`
|
||||
|
||||
if [ $ROOTSPACE -lt 100000 ]; then
|
||||
/usr/bin/logger -p syslog.emerg -t ipfire \
|
||||
"core-update-${core}: ERROR cannot update because not enough free space on root."
|
||||
exit 2
|
||||
fi
|
||||
|
||||
|
||||
echo
|
||||
echo Update Kernel to $KVER ...
|
||||
#
|
||||
# Remove old kernel, configs, initrd, modules, dtb's ...
|
||||
#
|
||||
rm -rf /boot/System.map-*
|
||||
rm -rf /boot/config-*
|
||||
rm -rf /boot/ipfirerd-*
|
||||
rm -rf /boot/initramfs-*
|
||||
rm -rf /boot/vmlinuz-*
|
||||
rm -rf /boot/uImage-ipfire-*
|
||||
rm -rf /boot/uInit-ipfire-*
|
||||
rm -rf /boot/dtb-*-ipfire-*
|
||||
rm -rf /lib/modules
|
||||
|
||||
case "$(uname -m)" in
|
||||
armv*)
|
||||
# Backup uEnv.txt if exist
|
||||
if [ -e /boot/uEnv.txt ]; then
|
||||
cp -vf /boot/uEnv.txt /boot/uEnv.txt.org
|
||||
fi
|
||||
|
||||
# work around the u-boot folder detection bug
|
||||
mkdir -pv /boot/dtb-$KVER-ipfire-kirkwood
|
||||
mkdir -pv /boot/dtb-$KVER-ipfire-multi
|
||||
;;
|
||||
esac
|
||||
|
||||
#
|
||||
#Stop services
|
||||
/etc/init.d/snort stop
|
||||
/etc/init.d/squid stop
|
||||
/etc/init.d/ipsec stop
|
||||
/etc/init.d/apache stop
|
||||
|
||||
# Drop old flag icons, before extracting the new ones.
|
||||
rm /srv/web/ipfire/html/images/flags/*
|
||||
|
||||
#
|
||||
#Extract files
|
||||
tar xavf /opt/pakfire/tmp/files* --no-overwrite-dir -p --numeric-owner -C /
|
||||
|
||||
#
|
||||
# restart init because glibc was updated.
|
||||
telinit u
|
||||
|
||||
# Remove old openssl libraries
|
||||
rm -vf /usr/lib/libcrypto.so.0.9.8 /usr/lib/libssl.so.0.9.8
|
||||
|
||||
# Check diskspace on boot
|
||||
BOOTSPACE=`df /boot -Pk | sed "s| * | |g" | cut -d" " -f4 | tail -n 1`
|
||||
|
||||
if [ $BOOTSPACE -lt 1000 ]; then
|
||||
case $(uname -r) in
|
||||
*-ipfire-kirkwood )
|
||||
# Special handling for old kirkwood images.
|
||||
# (install only kirkwood kernel)
|
||||
rm -rf /boot/*
|
||||
# work around the u-boot folder detection bug
|
||||
mkdir -pv /boot/dtb-$KVER-ipfire-kirkwood
|
||||
tar xavf /opt/pakfire/tmp/files* --no-overwrite-dir -p \
|
||||
--numeric-owner -C / --wildcards 'boot/*-kirkwood*'
|
||||
;;
|
||||
* )
|
||||
/usr/bin/logger -p syslog.emerg -t ipfire \
|
||||
"core-update-${core}: FATAL-ERROR space run out on boot. System is not bootable..."
|
||||
/etc/init.d/apache start
|
||||
exit 4
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
||||
# Create GeoIP related files if they do not exist yet.
|
||||
if [ ! -e "/var/ipfire/firewall/geoipblock" ]; then
|
||||
touch /var/ipfire/firewall/geoipblock
|
||||
chown nobody:nobody /var/ipfire/firewall/geoipblock
|
||||
|
||||
# Insert default value into file.
|
||||
echo "GEOIPBLOCK_ENABLED=off" >> /var/ipfire/firewall/geoipblock
|
||||
fi
|
||||
if [ ! -e "/var/ipfire/fwhosts/customgeoipgrp" ]; then
|
||||
touch /var/ipfire/fwhosts/customgeoipgrp
|
||||
chown nobody:nobody /var/ipfire/fwhosts/customgeoipgrp
|
||||
fi
|
||||
|
||||
#Fix BUG10812 (openvpn server.conf has wrong collectd logfile path)
|
||||
if grep -q "status /var/log/ovpnserver.log 30" /var/ipfire/ovpn/server.conf; then
|
||||
sed -i "s/\/var\/log\/ovpnserver.log 30/\/var\/run\/ovpnserver.log 30/" /var/ipfire/ovpn/server.conf
|
||||
fi
|
||||
|
||||
# Download/Update GeoIP databases.
|
||||
/usr/local/bin/xt_geoip_update
|
||||
|
||||
# Update crontab
|
||||
grep -q /usr/local/bin/xt_geoip_update /var/spool/cron/root.orig || cat <<EOF >> /var/spool/cron/root.orig
|
||||
|
||||
# Update GeoIP database once a month.
|
||||
%monthly,random * * * [ -f "/var/ipfire/red/active" ] && /usr/local/bin/xt_geoip_update >/dev/null 2>&1
|
||||
EOF
|
||||
|
||||
fcrontab -z &>/dev/null
|
||||
|
||||
# Generate ddns configuration file
|
||||
sudo -u nobody /srv/web/ipfire/cgi-bin/ddns.cgi
|
||||
|
||||
# Regenerate IPsec configuration
|
||||
sudo -u nobody /srv/web/ipfire/cgi-bin/vpnmain.cgi
|
||||
|
||||
# Update Language cache
|
||||
perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
|
||||
|
||||
#
|
||||
# Start services
|
||||
#
|
||||
/etc/init.d/apache start
|
||||
/etc/init.d/squid start
|
||||
/etc/init.d/snort start
|
||||
if [ `grep "ENABLED=on" /var/ipfire/vpn/settings` ]; then
|
||||
/etc/init.d/ipsec start
|
||||
fi
|
||||
|
||||
case "$(uname -m)" in
|
||||
i?86)
|
||||
case "$(find_device "/")" in
|
||||
xvd* )
|
||||
echo Skip remove grub2 files, because pygrub fail.
|
||||
rm -f /boot/grub/*
|
||||
echo config will recreated by linux-pae install.
|
||||
;;
|
||||
* )
|
||||
#
|
||||
# Update to GRUB2 config
|
||||
#
|
||||
grub-mkconfig > /boot/grub/grub.cfg
|
||||
;;
|
||||
esac
|
||||
esac
|
||||
|
||||
# Upadate Kernel version uEnv.txt
|
||||
if [ -e /boot/uEnv.txt ]; then
|
||||
sed -i -e "s/KVER=.*/KVER=${KVER}/g" /boot/uEnv.txt
|
||||
fi
|
||||
|
||||
# call user update script (needed for some arm boards)
|
||||
if [ -e /boot/pakfire-kernel-update ]; then
|
||||
/boot/pakfire-kernel-update ${KVER}
|
||||
fi
|
||||
|
||||
|
||||
# Force (re)install pae kernel if pae is supported
|
||||
rm -rf /opt/pakfire/db/*/meta-linux-pae
|
||||
if [ ! "$(grep "^flags.* pae " /proc/cpuinfo)" == "" ]; then
|
||||
ROOTSPACE=`df / -Pk | sed "s| * | |g" | cut -d" " -f4 | tail -n 1`
|
||||
BOOTSPACE=`df /boot -Pk | sed "s| * | |g" | cut -d" " -f4 | tail -n 1`
|
||||
if [ $BOOTSPACE -lt 12000 -o $ROOTSPACE -lt 90000 ]; then
|
||||
/usr/bin/logger -p syslog.emerg -t ipfire \
|
||||
"core-update-${core}: WARNING not enough space for pae kernel."
|
||||
else
|
||||
echo "Name: linux-pae" > /opt/pakfire/db/installed/meta-linux-pae
|
||||
echo "ProgVersion: 0" >> /opt/pakfire/db/installed/meta-linux-pae
|
||||
echo "Release: 0" >> /opt/pakfire/db/installed/meta-linux-pae
|
||||
echo "Name: linux-pae" > /opt/pakfire/db/meta/meta-linux-pae
|
||||
echo "ProgVersion: 0" >> /opt/pakfire/db/meta/meta-linux-pae
|
||||
echo "Release: 0" >> /opt/pakfire/db/meta/meta-linux-pae
|
||||
fi
|
||||
fi
|
||||
|
||||
#
|
||||
# After pakfire has ended run it again and update the lists and do upgrade
|
||||
#
|
||||
echo '#!/bin/bash' > /tmp/pak_update
|
||||
echo 'while [ "$(ps -A | grep " update.sh")" != "" ]; do' >> /tmp/pak_update
|
||||
echo ' sleep 1' >> /tmp/pak_update
|
||||
echo 'done' >> /tmp/pak_update
|
||||
echo 'while [ "$(ps -A | grep " pakfire")" != "" ]; do' >> /tmp/pak_update
|
||||
echo ' sleep 1' >> /tmp/pak_update
|
||||
echo 'done' >> /tmp/pak_update
|
||||
echo '/opt/pakfire/pakfire update -y --force' >> /tmp/pak_update
|
||||
echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
|
||||
echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
|
||||
echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
|
||||
echo '/usr/bin/logger -p syslog.emerg -t ipfire "Core-upgrade finished. If you use a customized grub/uboot config"' >> /tmp/pak_update
|
||||
echo '/usr/bin/logger -p syslog.emerg -t ipfire "Check it before reboot !!!"' >> /tmp/pak_update
|
||||
echo '/usr/bin/logger -p syslog.emerg -t ipfire " *** Please reboot... *** "' >> /tmp/pak_update
|
||||
echo 'touch /var/run/need_reboot ' >> /tmp/pak_update
|
||||
#
|
||||
killall -KILL pak_update
|
||||
chmod +x /tmp/pak_update
|
||||
/tmp/pak_update &
|
||||
|
||||
sync
|
||||
|
||||
#
|
||||
#Finish
|
||||
(
|
||||
/etc/init.d/fireinfo start
|
||||
sendprofile
|
||||
) >/dev/null 2>&1 &
|
||||
|
||||
echo
|
||||
echo Please wait until pakfire has ended...
|
||||
echo
|
||||
|
||||
# Don't report the exitcode last command
|
||||
exit 0
|
||||
|
||||
@@ -11,15 +11,15 @@ usr/bin/sigtool
|
||||
#usr/lib/libclamav.la
|
||||
usr/lib/libclamav.so
|
||||
usr/lib/libclamav.so.6
|
||||
usr/lib/libclamav.so.6.1.25
|
||||
usr/lib/libclamav.so.6.1.26
|
||||
#usr/lib/libclamunrar.la
|
||||
usr/lib/libclamunrar.so
|
||||
usr/lib/libclamunrar.so.6
|
||||
usr/lib/libclamunrar.so.6.1.25
|
||||
usr/lib/libclamunrar.so.6.1.26
|
||||
#usr/lib/libclamunrar_iface.la
|
||||
usr/lib/libclamunrar_iface.so
|
||||
usr/lib/libclamunrar_iface.so.6
|
||||
usr/lib/libclamunrar_iface.so.6.1.25
|
||||
usr/lib/libclamunrar_iface.so.6.1.26
|
||||
#usr/lib/pkgconfig/libclamav.pc
|
||||
usr/sbin/clamd
|
||||
usr/share/clamav
|
||||
|
||||
@@ -37,4 +37,5 @@
|
||||
#usr/include/srtp/ut_sim.h
|
||||
#usr/include/srtp/xfm.h
|
||||
usr/lib/libsrtp.so
|
||||
usr/lib/libsrtp.so.1
|
||||
#usr/lib/pkgconfig/libsrtp.pc
|
||||
|
||||
@@ -7,19 +7,33 @@ usr/bin/qemu-img
|
||||
usr/bin/qemu-io
|
||||
usr/bin/qemu-nbd
|
||||
usr/bin/qemu-system-arm
|
||||
usr/bin/qemu-system-i386
|
||||
usr/libexec/qemu-bridge-helper
|
||||
#usr/share/doc/qemu
|
||||
#usr/share/doc/qemu/qemu-doc.html
|
||||
#usr/share/doc/qemu/qemu-tech.html
|
||||
#usr/share/doc/qemu/qmp-commands.txt
|
||||
#usr/share/man/man1/qemu-img.1
|
||||
#usr/share/man/man1/qemu.1
|
||||
#usr/share/man/man8/qemu-nbd.8
|
||||
usr/share/qemu
|
||||
#usr/share/qemu
|
||||
usr/share/qemu/QEMU,cgthree.bin
|
||||
usr/share/qemu/QEMU,tcx.bin
|
||||
usr/share/qemu/acpi-dsdt.aml
|
||||
usr/share/qemu/bamboo.dtb
|
||||
usr/share/qemu/bios-256k.bin
|
||||
usr/share/qemu/bios.bin
|
||||
usr/share/qemu/extboot.bin
|
||||
usr/share/qemu/efi-e1000.rom
|
||||
usr/share/qemu/efi-eepro100.rom
|
||||
usr/share/qemu/efi-ne2k_pci.rom
|
||||
usr/share/qemu/efi-pcnet.rom
|
||||
usr/share/qemu/efi-rtl8139.rom
|
||||
usr/share/qemu/efi-virtio.rom
|
||||
usr/share/qemu/keymaps
|
||||
usr/share/qemu/keymaps/ar
|
||||
usr/share/qemu/keymaps/bepo
|
||||
usr/share/qemu/keymaps/common
|
||||
usr/share/qemu/keymaps/cz
|
||||
usr/share/qemu/keymaps/da
|
||||
usr/share/qemu/keymaps/de
|
||||
usr/share/qemu/keymaps/de-ch
|
||||
@@ -53,12 +67,13 @@ usr/share/qemu/keymaps/sl
|
||||
usr/share/qemu/keymaps/sv
|
||||
usr/share/qemu/keymaps/th
|
||||
usr/share/qemu/keymaps/tr
|
||||
usr/share/qemu/kvmvapic.bin
|
||||
usr/share/qemu/linuxboot.bin
|
||||
usr/share/qemu/mpc8544ds.dtb
|
||||
usr/share/qemu/multiboot.bin
|
||||
usr/share/qemu/openbios-ppc
|
||||
usr/share/qemu/openbios-sparc32
|
||||
usr/share/qemu/openbios-sparc64
|
||||
usr/share/qemu/palcode-clipper
|
||||
usr/share/qemu/petalogix-ml605.dtb
|
||||
usr/share/qemu/petalogix-s3adsp1800.dtb
|
||||
usr/share/qemu/ppc_rom.bin
|
||||
@@ -68,12 +83,19 @@ usr/share/qemu/pxe-ne2k_pci.rom
|
||||
usr/share/qemu/pxe-pcnet.rom
|
||||
usr/share/qemu/pxe-rtl8139.rom
|
||||
usr/share/qemu/pxe-virtio.rom
|
||||
usr/share/qemu/q35-acpi-dsdt.aml
|
||||
usr/share/qemu/qemu-icon.bmp
|
||||
usr/share/qemu/qemu_logo_no_text.svg
|
||||
usr/share/qemu/s390-ccw.img
|
||||
usr/share/qemu/s390-zipl.rom
|
||||
usr/share/qemu/sgabios.bin
|
||||
usr/share/qemu/slof.bin
|
||||
usr/share/qemu/spapr-rtas.bin
|
||||
usr/share/qemu/vapic.bin
|
||||
usr/share/qemu/trace-events
|
||||
usr/share/qemu/u-boot.e500
|
||||
usr/share/qemu/vgabios-cirrus.bin
|
||||
usr/share/qemu/vgabios-qxl.bin
|
||||
usr/share/qemu/vgabios-stdvga.bin
|
||||
usr/share/qemu/vgabios-vmware.bin
|
||||
usr/share/qemu/vgabios.bin
|
||||
#usr/var/run
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
#etc/logrotate.d
|
||||
etc/logrotate.d/tor
|
||||
etc/rc.d/init.d/tor
|
||||
etc/rc.d/rc0.d/K40tor
|
||||
etc/rc.d/rc3.d/S60tor
|
||||
etc/rc.d/rc6.d/K40tor
|
||||
#etc/tor
|
||||
#etc/tor/tor-tsocks.conf
|
||||
etc/tor/torrc
|
||||
srv/web/ipfire/cgi-bin/tor.cgi
|
||||
usr/bin/tor
|
||||
|
||||
@@ -21,7 +21,7 @@ RANDFILE = $dir/tmp/.rand
|
||||
x509_extensions = usr_cert
|
||||
default_days = 999999
|
||||
default_crl_days= 30
|
||||
default_md = md5
|
||||
default_md = sha256
|
||||
preserve = no
|
||||
policy = policy_match
|
||||
email_in_dn = no
|
||||
@@ -35,7 +35,7 @@ commonName = supplied
|
||||
emailAddress = optional
|
||||
|
||||
[ req ]
|
||||
default_bits = 1024
|
||||
default_bits = 2048
|
||||
default_keyfile = privkey.pem
|
||||
distinguished_name = req_distinguished_name
|
||||
attributes = req_attributes
|
||||
|
||||
@@ -50,6 +50,7 @@ Run the installer in text mode.
|
||||
ENDTEXT
|
||||
KERNEL vmlinuz
|
||||
INITRD instroot
|
||||
APPEND novga
|
||||
|
||||
LABEL unattended
|
||||
MENU LABEL Unattended installation
|
||||
|
||||
3
config/udev/60-net.rules
Normal file
3
config/udev/60-net.rules
Normal file
@@ -0,0 +1,3 @@
|
||||
# Call a script that checks for the right name of the new device.
|
||||
# If it matches the configuration it will be renamed accordingly.
|
||||
ACTION=="add", SUBSYSTEM=="net", PROGRAM="/lib/udev/network-hotplug-rename", RESULT=="?*", NAME="$result"
|
||||
75
config/udev/network-hotplug-rename
Normal file
75
config/udev/network-hotplug-rename
Normal file
@@ -0,0 +1,75 @@
|
||||
#!/bin/bash
|
||||
###############################################################################
|
||||
# #
|
||||
# IPFire.org - A linux based firewall #
|
||||
# Copyright (C) 2015 IPFire Team <info@ipfire.org> #
|
||||
# #
|
||||
# This program is free software: you can redistribute it and/or modify #
|
||||
# it under the terms of the GNU General Public License as published by #
|
||||
# the Free Software Foundation, either version 3 of the License, or #
|
||||
# (at your option) any later version. #
|
||||
# #
|
||||
# This program is distributed in the hope that it will be useful, #
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
||||
# GNU General Public License for more details. #
|
||||
# #
|
||||
# You should have received a copy of the GNU General Public License #
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
|
||||
# #
|
||||
###############################################################################
|
||||
|
||||
# Check if all appropriate variables are set
|
||||
[ -n "${INTERFACE}" ] || exit 2
|
||||
|
||||
# Ignore virtual interfaces, etc.
|
||||
case "${INTERFACE}" in
|
||||
lo)
|
||||
exit 0
|
||||
;;
|
||||
tun*)
|
||||
exit 0
|
||||
;;
|
||||
ppp*)
|
||||
exit 0
|
||||
;;
|
||||
esac
|
||||
|
||||
# Check if INTERFACE actually exists
|
||||
[ -d "/sys/class/net/${INTERFACE}" ] || exit 1
|
||||
|
||||
# If the network configuration is not readable,
|
||||
# we cannot go on.
|
||||
if [ ! -r "/var/ipfire/ethernet/settings" ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Read network settings
|
||||
eval $(/usr/local/bin/readhash /var/ipfire/ethernet/settings)
|
||||
|
||||
# Standard zones
|
||||
ZONES="RED GREEN ORANGE BLUE"
|
||||
|
||||
# Determine the address of INTERFACE
|
||||
ADDRESS="$(</sys/class/net/${INTERFACE}/address)"
|
||||
|
||||
# Walk through all zones and find the matching interface
|
||||
for zone in ${ZONES}; do
|
||||
address="${zone}_MACADDR"
|
||||
device="${zone}_DEV"
|
||||
|
||||
# Skip if address or device is unset
|
||||
[ -n "${!address}" -a -n "${!device}" ] || continue
|
||||
|
||||
# If a matching interface has been found we will
|
||||
# print the name to which udev will rename it.
|
||||
if [ "${ADDRESS}" = "${!address}" ]; then
|
||||
echo "${!device}"
|
||||
exit 0
|
||||
fi
|
||||
done
|
||||
|
||||
# If we get here we have not found a matching device,
|
||||
# but we won't return an error any way. The new device
|
||||
# will remain with the previous name.
|
||||
exit 0
|
||||
24
config/xtables-addons/mconfig
Normal file
24
config/xtables-addons/mconfig
Normal file
@@ -0,0 +1,24 @@
|
||||
# -*- Makefile -*-
|
||||
#
|
||||
build_ACCOUNT=m
|
||||
build_CHAOS=m
|
||||
build_DELUDE=m
|
||||
build_DHCPMAC=m
|
||||
build_DNETMAP=m
|
||||
build_ECHO=m
|
||||
build_IPMARK=m
|
||||
build_LOGMARK=m
|
||||
build_SYSRQ=n
|
||||
build_TARPIT=m
|
||||
build_condition=m
|
||||
build_fuzzy=m
|
||||
build_geoip=m
|
||||
build_gradm=n
|
||||
build_iface=m
|
||||
build_ipp2p=m
|
||||
build_ipv4options=m
|
||||
build_length2=m
|
||||
build_lscan=m
|
||||
build_pknock=m
|
||||
build_psd=m
|
||||
build_quota2=m
|
||||
@@ -75,6 +75,7 @@ WARNING: translation string unused: bad characters in
|
||||
WARNING: translation string unused: behind a proxy
|
||||
WARNING: translation string unused: bitrate
|
||||
WARNING: translation string unused: bleeding rules
|
||||
WARNING: translation string unused: block
|
||||
WARNING: translation string unused: blue access use hint
|
||||
WARNING: translation string unused: blue interface
|
||||
WARNING: translation string unused: cache management
|
||||
@@ -243,6 +244,7 @@ WARNING: translation string unused: fwhost Standard Network
|
||||
WARNING: translation string unused: fwhost attention
|
||||
WARNING: translation string unused: fwhost blue
|
||||
WARNING: translation string unused: fwhost changeremark
|
||||
WARNING: translation string unused: fwhost cust geoip
|
||||
WARNING: translation string unused: fwhost err addrgrp
|
||||
WARNING: translation string unused: fwhost err hostorip
|
||||
WARNING: translation string unused: fwhost err mac
|
||||
@@ -258,6 +260,9 @@ WARNING: translation string unused: fwhost wo subnet
|
||||
WARNING: translation string unused: gen static key
|
||||
WARNING: translation string unused: generate
|
||||
WARNING: translation string unused: genkey
|
||||
WARNING: translation string unused: geoipblock country code
|
||||
WARNING: translation string unused: geoipblock country name
|
||||
WARNING: translation string unused: geoipblock flag
|
||||
WARNING: translation string unused: green interface
|
||||
WARNING: translation string unused: gz with key
|
||||
WARNING: translation string unused: hint
|
||||
@@ -275,6 +280,7 @@ WARNING: translation string unused: ike encryption
|
||||
WARNING: translation string unused: ike grouptype
|
||||
WARNING: translation string unused: ike integrity
|
||||
WARNING: translation string unused: ike lifetime
|
||||
WARNING: translation string unused: ike lifetime should be between 1 and 24 hours
|
||||
WARNING: translation string unused: import
|
||||
WARNING: translation string unused: importkey
|
||||
WARNING: translation string unused: in
|
||||
@@ -575,6 +581,8 @@ WARNING: translation string unused: transfer limits
|
||||
WARNING: translation string unused: transparent on
|
||||
WARNING: translation string unused: umount
|
||||
WARNING: translation string unused: umount removable media before to unplug
|
||||
WARNING: translation string unused: unblock
|
||||
WARNING: translation string unused: unblock all
|
||||
WARNING: translation string unused: unencrypted
|
||||
WARNING: translation string unused: update transcript
|
||||
WARNING: translation string unused: updates
|
||||
@@ -631,7 +639,9 @@ WARNING: untranslated string: bytes
|
||||
WARNING: untranslated string: community rules
|
||||
WARNING: untranslated string: dead peer detection
|
||||
WARNING: untranslated string: emerging rules
|
||||
WARNING: untranslated string: fwhost cust geoipgrp
|
||||
WARNING: untranslated string: fwhost err hostip
|
||||
WARNING: untranslated string: ike lifetime should be between 1 and 8 hours
|
||||
WARNING: untranslated string: no data
|
||||
WARNING: untranslated string: qos add subclass
|
||||
WARNING: untranslated string: route config changed
|
||||
|
||||
@@ -93,6 +93,7 @@ WARNING: translation string unused: bewan adsl pci st
|
||||
WARNING: translation string unused: bewan adsl usb
|
||||
WARNING: translation string unused: bitrate
|
||||
WARNING: translation string unused: bleeding rules
|
||||
WARNING: translation string unused: block
|
||||
WARNING: translation string unused: blue access use hint
|
||||
WARNING: translation string unused: blue interface
|
||||
WARNING: translation string unused: cache management
|
||||
@@ -266,6 +267,7 @@ WARNING: translation string unused: fwhost Standard Network
|
||||
WARNING: translation string unused: fwhost attention
|
||||
WARNING: translation string unused: fwhost blue
|
||||
WARNING: translation string unused: fwhost changeremark
|
||||
WARNING: translation string unused: fwhost cust geoip
|
||||
WARNING: translation string unused: fwhost err addrgrp
|
||||
WARNING: translation string unused: fwhost err hostorip
|
||||
WARNING: translation string unused: fwhost err mac
|
||||
@@ -283,6 +285,9 @@ WARNING: translation string unused: g.lite
|
||||
WARNING: translation string unused: gen static key
|
||||
WARNING: translation string unused: generate
|
||||
WARNING: translation string unused: genkey
|
||||
WARNING: translation string unused: geoipblock country code
|
||||
WARNING: translation string unused: geoipblock country name
|
||||
WARNING: translation string unused: geoipblock flag
|
||||
WARNING: translation string unused: green interface
|
||||
WARNING: translation string unused: gz with key
|
||||
WARNING: translation string unused: hint
|
||||
@@ -300,6 +305,7 @@ WARNING: translation string unused: ike encryption
|
||||
WARNING: translation string unused: ike grouptype
|
||||
WARNING: translation string unused: ike integrity
|
||||
WARNING: translation string unused: ike lifetime
|
||||
WARNING: translation string unused: ike lifetime should be between 1 and 24 hours
|
||||
WARNING: translation string unused: import
|
||||
WARNING: translation string unused: importkey
|
||||
WARNING: translation string unused: in
|
||||
@@ -608,6 +614,8 @@ WARNING: translation string unused: transfer limits
|
||||
WARNING: translation string unused: transparent on
|
||||
WARNING: translation string unused: umount
|
||||
WARNING: translation string unused: umount removable media before to unplug
|
||||
WARNING: translation string unused: unblock
|
||||
WARNING: translation string unused: unblock all
|
||||
WARNING: translation string unused: unencrypted
|
||||
WARNING: translation string unused: update transcript
|
||||
WARNING: translation string unused: updates
|
||||
@@ -663,7 +671,9 @@ WARNING: translation string unused: year-graph
|
||||
WARNING: translation string unused: yearly firewallhits
|
||||
WARNING: untranslated string: Scan for Songs
|
||||
WARNING: untranslated string: bytes
|
||||
WARNING: untranslated string: fwhost cust geoipgrp
|
||||
WARNING: untranslated string: fwhost err hostip
|
||||
WARNING: untranslated string: ike lifetime should be between 1 and 8 hours
|
||||
WARNING: untranslated string: no data
|
||||
WARNING: untranslated string: route config changed
|
||||
WARNING: untranslated string: routing config added
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user