Netgate Discussion Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Search
    • Register
    • Login

    Squid3 on Transparent HTTP proxy dont work

    Scheduled Pinned Locked Moved Cache/Proxy
    35 Posts 3 Posters 4.6k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • F
      firefox
      last edited by

      here are the setting

      squidclamav.conf

      #-----------------------------------------------------------------------------
      # SquidClamav default configuration file
      #
      # To know to customize your configuration file, see squidclamav manpage
      # or go to http://squidclamav.darold.net/
      #
      #-----------------------------------------------------------------------------
      #
      # Global configuration
      #
      
      # Maximum size of a file that may be scanned. Any file bigger that this value
      # will not be scanned.
      maxsize 5000000
      
      # When a virus is found then redirect the user to this URL
      redirect http://proxy.domain.dom/squid_clwarn.php
      
      # Path to the squiGuard binary if you want URL filtering, note that you'd better
      # use the squid configuration directive 'url_rewrite_program' instead.
      #squidguard /usr/local/squidGuard/bin/squidGuard
      
      # Path to the clamd socket, use clamd_local if you use Unix socket or if clamd
      # is listening on an Inet socket, comment clamd_local and set the clamd_ip and
      # clamd_port to the corresponding value.
      clamd_local /var/run/clamav/clamd.sock
      #clamd_ip 192.168.1.5,127.0.0.1
      #clamd_port 3310
      
      # Set the timeout for clamd connection. Default is 1 second, this is a good
      # value but if you have slow service you can increase up to 3.
      timeout 1
      
      # Force SquidClamav to log all virus detection or squiguard block redirection
      # to the c-icap log file.
      logredir 0
      
      # Enable / disable DNS lookup of client ip address. Default is enabled '1' to
      # preserve backward compatibility but you must desactivate this feature if you
      # don't use trustclient with hostname in the regexp or if you don't have a DNS
      # on your network. Disabling it will also speed up squidclamav.
      dnslookup 1
      
      # Enable / Disable Clamav Safe Browsing feature. You mus have enabled the
      # corresponding behavior in clamd by enabling SafeBrowsing into freshclam.conf
      # Enabling it will first make a safe browsing request to clamd and then the
      # virus scan request. 
      safebrowsing 0
      
      #
      # Here is some defaut regex pattern to have a high speed proxy on system
      # with low resources.
      #
      
      # Do not scan images
      #abort ^.*\.(ico|gif|png|jpg)$
      #abortcontent ^image\/.*$
      
      # Do not scan text files
      #abort ^.*\.(css|xml|xsl|js|html|jsp)$
      #abortcontent ^text\/.*$
      #abortcontent ^application\/x-javascript$
      
      # Do not scan streamed videos
      #abortcontent ^video\/x-flv$
      #abortcontent ^video\/mp4$
      
      # Do not scan flash files
      #abort ^.*\.swf$
      #abortcontent ^application\/x-shockwave-flash$
      
      # Do not scan sequence of framed Microsoft Media Server (MMS) data packets
      #abortcontent ^.*application\/x-mms-framed.*$
      
      # White list some sites
      #whitelist .*\.clamav.net
      
      # See also 'trustuser' and 'trustclient' configuration directives
      
      

      c-icap.conf

      #
      # This file contains the default settings for c-icap
      # 
      # 
      
      # TAG: PidFile
      # Format: PidFile pid_file
      # Description:
      #	The file to store the pid of the main process of the c-icap server.
      # Default:
      #	PidFile /var/run/c-icap/c-icap.pid
      PidFile /var/run/c-icap/c-icap.pid
      
      # TAG: CommandsSocket
      # Format: CommandsSocket socket_file
      # Description:
      #	The path of file to use as control socket for c-icap
      # Default:
      #	CommandsSocket /var/run/c-icap/c-icap.ctl
      CommandsSocket /var/run/c-icap/c-icap.ctl
      
      # TAG: Timeout
      # Format: Timeout seconds
      # Description:
      #	The time in seconds after which a connection without activity
      #	can be cancelled.
      # Default:
      #	Timeout 300
      Timeout 300
      
      # TAG: MaxKeepAliveRequests
      # Format: MaxKeepAliveRequests number
      # Description:
      #	The maximum number of requests can be served by one connection
      #	Set it to -1 for no limit
      # Default:
      #	MaxKeepAliveRequests 100
      MaxKeepAliveRequests 100
      
      # TAG: KeepAliveTimeout
      # Format: KeepAliveTimeout seconds
      # Description:
      #	The maximum time in seconds waiting for a new requests before a 
      #	connection will be closed.
      #	If the value is set to -1, there is no timeout.
      # Default:
      #	KeepAliveTimeout 600
      KeepAliveTimeout 600  
      
      # TAG: StartServers
      # Format: StartServers number
      # Description:
      #	The initial number of server processes. Each server process
      #	generates a number of threads, which serve the requests.
      # Default:
      #	StartServers 3
      StartServers 3
      
      # TAG: MaxServers
      # Format: MaxServers number
      # Description:
      #	The maximum allowed number of server processes.
      # Default:
      #	MaxServers 10
      MaxServers 10
      
      # TAG: MinSpareThreads
      # Format: MinSpareThreads number
      # Description:
      #	If the number of the available threads is less than number,
      #	the c-icap server starts a new child.
      # Default:
      #	MinSpareThreads     10
      MinSpareThreads     10
      
      # TAG: MaxSpareThreads
      # Format: MaxSpareThreads number
      # Description:
      #	If the number of the available threads is more than number then 
      #	the c-icap server kills a child.
      # Default:
      #	MaxSpareThreads     20
      MaxSpareThreads     20
      
      # TAG: ThreadsPerChild
      # Format:  ThreadsPerChild number
      # Description:
      #	The number of threads per child process.
      # Default:
      #	ThreadsPerChild     10
      ThreadsPerChild     10
      
      # TAG: MaxRequestsPerChild
      # Format: MaxRequestsPerChild number
      # Description:
      #	The maximum number of requests that a child process can serve.
      #	After this number has been reached, process dies. The goal of this
      #	parameter is to minimize the risk of memory leaks and increase the
      #	stability of c-icap. It can be disabled by setting its value to 0.
      # Default:
      #	MaxRequestsPerChild  0
      MaxRequestsPerChild  0
      
      # TAG: Port
      # Format: Port port
      # Description:
      #	The port number that the c-icap server uses to listen to requests.
      # Default:
      #	Port 1344
      Port 1344 
      
      # TAG: User
      # Format: User username
      # Description:
      #	The user owning c-icap's processes. By default, the owner is the
      #	user who runs the program.
      # Default:
      #	No value
      # Example:
      #	User wwwrun
      
      # TAG: Group
      # Format: Group groupname
      # Description:
      #	The group of users owning c-icap's processes, which, by default
      #	is the group of the current user.
      # Default:
      #	No value
      # Example:
      #	Group nogroup
      
      # TAG: ServerAdmin
      # Format: ServerAdmin admin_mail
      # Description:
      #	The Administrator of this server. Used when displaying information
      #	about this server (logs, info service, etc)
      # Default:
      #	No value
      ServerAdmin you@your.address
      
      # TAG: ServerName
      # Format: ServerName aServerName
      # Description:
      #	A name for this server. Used when displaying information about this
      #	server (logs, info service, etc)
      # Default:
      #	No value
      ServerName YourServerName
      
      # TAG: TmpDir
      # Format: TmpDir dir
      # Description:
      #	dir is the location of temporary files.
      # Default:
      #	TmpDir /var/tmp
      TmpDir /var/tmp
      
      # TAG: MaxMemObject
      # Format: MaxMemObject bytes
      # Description:
      #	The maximum memory size in bytes taken by an object which
      #	is processed by c-icap . If the size of an object's body is
      #	larger than the maximum size a temporary file is used.
      # Default:
      #	MaxMemObject 131072
      MaxMemObject 131072
      
      # TAG: DebugLevel
      # Format: DebugLevel level
      # Description:
      #	The level of debugging information to be logged.
      #	The acceptable range of levels is between 0 and 10.
      # Default:
      #	DebugLevel 1
      DebugLevel 1
      
      # TAG: Pipelining
      # Format: Pipelining on|off
      # Description:
      #	Enable or disable ICAP requests pipelining
      # Default:
      #	Pipelining on
      Pipelining on
      
      # TAG: SupportBuggyClients
      # FORMAT: SupportBuggyClients on|off
      # Description:
      #	Try to handle requests from buggy clients, for example ICAP requests
      #	missing "\r\n" sequences
      # Default:
      # SupportBuggyClients off
      SupportBuggyClients off
      
      # TAG: ModulesDir
      # Format: ModulesDir dir
      # Description:
      #	The location of modules
      # Default:
      #	ModulesDir /usr/local/lib/c_icap
      ModulesDir /usr/local/lib/c_icap
      
      # TAG: ServicesDir
      # Format: ServicesDir dir
      # Description:
      #	The location of services
      # Default:
      #	ServicesDir /usr/local/lib/c_icap
      ServicesDir /usr/local/lib/c_icap
      
      # TAG: TemplateDir
      # Format: TemplateDir dir
      # Description:
      #	The location of the text templates used by c-icap and its services,
      #	categorized by language and services/modules
      # Default:
      #	No value
      # Example:
      TemplateDir /usr/local/share/c_icap/templates/
      
      # TAG: TemplateDefaultLanguage
      # Format: TemplateDefaultLanguage lang
      # Description:
      #	Sets the default language to use for text templates
      # Default:
      #	TemplateDefaultLanguage en
      TemplateDefaultLanguage en
      
      #TemplateReloadTime 360
      #TemplateCacheSize 20
      #TemplateMemBufSize 8192
      
      # TAG: LoadMagicFile
      # Format: LoadMagicFile path
      # Description:
      #	Load a c-icap magic file. A magic file contains various 
      #	data type definitions. Look inside default c-icap.magic file
      #	for more informations.
      #	It can be used more than once to use multiple magic files.
      # Default:
      #	LoadMagicFile /usr/local/etc/c-icap/c-icap.magic
      LoadMagicFile /usr/local/etc/c-icap/c-icap.magic
      
      # TAG: RemoteProxyUsers
      # Format: RemoteProxyUsers onoff
      # Description:
      #	Set it to on if you want to use username provided by the proxy server.
      #	This is the recomended way to use users in c-icap.
      #	If the RemoteProxyUsers is off and c-icap configured to use users or
      #	groups the internal authentication mechanism will be used.
      # Default:
      #	RemoteProxyUsers off
      RemoteProxyUsers off
      
      # TAG: RemoteProxyUserHeader
      # Format: RemoteProxyUserHeader Header
      # Description:
      #	Used to specify the icap header used by the proxy server to send
      #	the authenticated client username to c-icap server 
      # Default:
      #	RemoteProxyUserHeader X-Authenticated-User
      RemoteProxyUserHeader X-Authenticated-User
      
      # TAG: RemoteProxyUserHeaderEncoded
      # Format: RemoteProxyUserHeaderEncoded onoff
      # Description:
      #	Set it to off if the RemoteProxyUserHeader is not base64 encoded
      # Default:
      #	RemoteProxyUserHeaderEncoded on
      RemoteProxyUserHeaderEncoded on
      
      # TAG: AuthMethod
      # Format: AuthMethod Method Authenticator
      # Description:
      #	Used to define the internal authentication mechanism to use. This
      #	feature is not well tested and may cause problems. It is better to use
      #	RemoteProxyUser configuration.
      #	Method is the authentication method to use (basic, digest, etc).
      #	Currently only basic authentication method is implemented as build in
      #	module
      #	Authenticator currently can only be "basic_simple_db"
      #	It can be considered as a user/password store and can be
      #	implemented as external module. The basic_simple_db is implemented as
      #	build it module
      # Default:
      #	No set
      # Example:
      #	AuthMethod basic basic_simple_db
      
      # TAG: basic.Realm
      # Format: basic.Realm ARealm
      # Description:
      #	Specify the basic method realm
      # Default:
      #	basic.Realm "Basic authentication"
      # Example:
      #	basic.Realm "c-icap server authentication"
      
      # TAG: basic_simple_db.UsersDB
      # Format: basic_simple_db.UsersDB LookupTable
      # Description:
      #	Specify the lookup table where the usernames/passwords pairs 
      #	are stored. The paswords must be unencrypted
      #	For more information about c-icap lookup tables read c-icap server
      #	manual page
      # Default:
      #	No value
      # Example:
      #	basic_simple_db.UsersDB hash:/usr/local/c-icap/etc/c-icap-users.txt
      
      # TAG: GroupSourceByGroup
      # Format: GroupSourceByGroup LookupTable
      # Description:
      #	Defines a lookup table where the groups of users are stored indexed
      #	by group. It can be used more than once.
      #	For more information about c-icap lookup tables read c-icap server
      #	manual page
      # Default:
      #	No set
      # Example:
      #	GroupSourceByGroup hash:/usr/local/c-icap/etc/c-icap-groups.txt
      
      # TAG: GroupSourceByUser
      # Format: GroupSourceByUser LookupTable
      # Description:
      #	Defines a lookup table where the groups of users are stored indexed 
      #	by user. It can be used more than once.
      #	For more information about c-icap lookup tables read c-icap server
      #	manual page
      # Default:
      #	No set
      # Example:
      #	GroupSourceByUser hash:/usr/local/c-icap/etc/c-icap-user-groups.txt
      
      # TAG: acl
      # Format: acl name type[{param}] value1 [value2] [...]
      # Description:
      #	Supported acl types are:
      #		acl aclname service service1 ...
      #		     The servicename
      #		acl aclname type OPTIONS|RESPMOD|REQMOD ...
      #		     The icap method
      #		acl aclname port port1 ...
      #		     The icap server port
      #		acl aclname src ip1/netmask1 ...
      #		     The client ip address
      #		acl aclname srvip ip1/netmask1 ...
      #		     The c-icap server ip address
      #		acl aclname icap_header{HeaderName} value1 ...
      #		     Matches the icap header HeaderName with value1 ...
      #		     The values are in regex form: /avalue/
      #		acl aclname icap_resp_header{HeaderName} value1 ...
      #		     The icap response header
      #		     The values are in regex form: /avalue/
      #		acl aclname http_req_header{HeaderName} value1 ...
      #		     The http request header
      #		     The values are in regex form: /avalue/
      #		acl aclname http_resp_header{HeaderName} value1 ...
      #		     The http response header
      #		     The values are in regex form: /avalue/
      #		acl aclname data_type type1 ...
      #		     The data type as recognized by the internal data type
      #		     recognizer. The types are defined in c-icap.magic file
      #		acl aclname auth username|* ...
      #		     The authenticated users. Using * instead of username means
      #		     all users.
      #		acl aclname group group1 ...
      #		     if the user of request belongs to given groups
      # Default:
      #	None set
      # Examples:
      #	acl OPTIONS type OPTIONS
      #	acl RESPMOD type RESPMOD
      #	acl REQMOD  type REQMOD
      #	acl ALLREQUESTS type OPTIONS RESPMOD REQMOD
      #	acl XHEAD icap_header{X-Test}  /value/
      #	acl ECHO service echo
      #	acl localnet src 192.168.1.0/255.255.255.0
      #	acl localhost src 127.0.0.1/255.255.255.255
      #	acl all src 0.0.0.0/0.0.0.0
      
      # TAG: icap_access
      # Format: icap_access allow|deny [!]acl1 ...
      # Description:
      #	Allowing or denying ICAP access based on defined access lists
      # Default:
      #	None set
      # Example:
      #	icap_access deny XHEAD
      #	#Allow OPTIONS method for all:
      #	icap_access allow localnet OPTIONS
      #	#Require authentication for all users from local network:
      #	icap_access allow AUTH localnet
      #	icap_access deny all
      
      # TAG: client_access
      # Format: client_access allow|deny acl1 [acl2] [...]
      # Description:
      #	Allowing or denying connections on c-icap based on
      #	defined access lists. Only the acl types src, srvip and port
      #	can be used.
      # Default:
      #	None set
      # Example:
      #	client_access allow all
      
      # TAG: LogFormat 
      # Format: LogFormat Name Format
      # Description:
      #	Name is a name for this log format.
      #	Format is a string with embedded % format codes. % format codes 
      #	has the following form:
      #	    % [-] [width] [{argument}] formatcode
      #	    if - is specified then the output is left aligned
      #	    if width specified then the field is exactly width size
      #	    some formatcodes support arguments given as {argument}
      #	
      #	Format codes:
      #	       %a:  Remote IP-Address
      #	       %la: Local IP Address
      #	       %lp: Local port
      #	       %>a: Http Client IP Address. Only supported if the proxy 
      #	       	    client supports the "X-Client-IP" header
      #	       %<a: http="" server="" ip="" address.="" only="" supported="" if="" the="" proxy<br="">#	       	    client supports the "X-Server-IP" header
      #	       %ts: Seconds since epoch
      #	       %tl: Local time. Supports optional strftime format argument
      #	       %tg: GMT time. Supports optional strftime format argument
      #	       %>ho: Modified Http request header. Supports header name
      #	       	     as argument. If no argument given the first line returned
      #	       %huo: Modified Http request url
      #	       %<ho: modified="" http="" reply="" header.="" supports="" header="" name<br="">#	       	     as argument. If no argument given the first line returned
      #	       %iu: Icap request url
      #	       %im: Icap method
      #	       %is: Icap status code
      #	       %>ih: Icap request header. Supports header name
      #	       	     as argument. If no argument given the first line returned
      #	       %<ih: icap="" response="" header.="" supports="" header="" name<br="">#	       	     as argument. If no argument given the first line returned
      #	       %Ih: Http bytes received
      #	       %Oh: Http bytes sent
      #	       %Ib: Http body bytes received
      #	       %Ob: Http body bytes sent
      #	       %I: Bytes received
      #	       %O: Bytes sent
      #	       %bph: The first 5 bytes of the body preview data. Non 
      #	       	     printable characters printed in hex form.
      #	       	     Supports the number of bytes to output as argument.
      #	       %un: Username
      #	       %Sl: Service log string
      #              %Sa: Attribute value set by service. The attribute name must 
      #                   given as argument.
      # Default:
      #	None set
      # Example:
      #	LogFormat myFormat "%tl, %a %im %iu %is %I %O %Ib %Ob %{10}bph" 
      
      # TAG: ServerLog
      # Format: ServerLog LogFile
      # Description:
      #	the file used by the build-in logger file_logger to 
      #	store debugging information, errors and other
      #	information about the c-icap server.
      # Default:
      #	ServerLog /var/log/c-icap/server.log
      ServerLog /var/log/c-icap/server.log
      
      # TAG: AccessLog
      # Format: AccessLog LogFile [LogFormat] [[!]acl1] [[!]acl2] [...]
      # Description:
      #	LogFile is a file where to log access information.
      #	LogFormat is the log format to use. If ommited c-icap uses:
      #	 	"%tl, %la %a %im %iu %is"
      #	Also acls can be used to select certain requests to be logged.
      #	This directive can be used more than once to specify more than
      #	one access log files
      # Default:
      #	AccessLog /var/log/c-icap/access.log
      # Example:
      #	AccessLog /var/log/c-icap/access.log MyFormat all
      AccessLog /var/log/c-icap/access.log
      
      # TAG: Logger
      # Format: Logger LoggerName
      # Description:
      #	Specify wich logger to use. By default uses the build in "file_logger" which
      #	uses files for access and server logging.
      # Default:
      #	Logger file_logger
      # Example:
      #	Logger sys_logger
      
      # TAG: Module
      # Format: Module Type ModuleFile
      # Description:
      #	Load an external module/plugin to c-icap.
      #	ModuleFile is the filename of the module. If no full path given then c-icap
      #	searche in path defined by the ModulesDir configuration parameter.
      #	Type is the type of the external module and can be one of the following:
      #	- "logger" for modules implement a logger
      #	- "common" for general purpose modules
      # Default:
      #	
      # Example:
      #	Module logger sys_logger.so
      
      # TAG: Service
      # Format: Service aName ServiceFile
      # Description:
      #	It loads the service ServiceFile. The argument aName used 
      #	as alias name for the service
      # Default:
      #	
      # Example:
      #	Service echo_service srv_echo.so
      
      # TAG: ServiceAlias
      # Format: ServiceAlias AliasName ServiceName[?param1=value1¶m2=value2...]
      # Description:
      #	Used to define an alias name for a service.
      # Default:
      #	
      # Example:
      #	ServiceAlias avscan srv_clamav?allow204=on&sizelimit=off&mode=simple
      
      #
      # TAG: General configuration parameters for all services
      # Description:
      #	PreviewSize: The preview data size to advertise to the icap client
      #	MaxConnections: The client should not use more than MaxConnections
      #		for this service.
      #	TransferPreview: The list of file extensions, seperated by commas,
      #		for which the client should send preview data.
      #	TransferIgnore: The list of file extensions that should not be sent
      #		to the icap server
      #	TransferComplete: The list of file extensions that should be sent
      #		in their entirety, without preview, to the icap server
      #	OptionsTTL: The options ttl for the service. The "sec[s]", "min" or 
      #		"hour[s]" can be used to secify that the time is in seconds
      #		minutes or hours respectively. If no time-units given
      #		seconds are assumed.
      #	Allow206 on|off: Enable/disable advertise of 206 responses.
      #
      # Example:
      #	echo.PreviewSize 512
      #	echo.TransferIgnore gif, jpeg
      #	echo.OptionsTTL 3 min
      
      ######################################################
      # External modules comming with core c-icap server
      #
      # Module: echo
      # Description:
      #	Simple test service
      # Example:
      #	Service echo srv_echo.so
      Service echo srv_echo.so
      
      # Module: sys_logger
      # Description:
      #	Add support for logging access and server events to syslog server
      #	Use "Module" configuration parameter to load this module and "Logger"
      #	to make it default logger for the c-icap.
      # Example:
      #	Module logger sys_logger.so
      #	Logger sys_logger
      
      # TAG: sys_logger.Prefix
      # Format: sys_logger.Prefix string
      # Description:
      #	 string is be presented in every syslog message.
      # Default:
      #	sys_logger.Prefix "C-ICAP:"
      
      # TAG: sys_logger.Facility
      # Format: sys_logger.Facility daemon|user|local1|local2|local3|local4|local5|local6|local7
      # Description:
      #	specifies the facility type of syslog. 
      # Default:
      #	sys_logger.Facility daemon
      
      # TAG: sys_logger.access_priority
      # Format: sys_logger.access_priority alert|crit|debug|emerg|err|info|notice|warning
      # Description:
      #	determines  the  importance  of the access log message
      # Default:
      #	sys_logger.access_priority info
      
      # TAG: sys_logger.server_priority
      # Format: sys_logger.server_priority alert|crit|debug|emerg|err|info|notice|warning
      # Description:
      #	determines  the  importance  of the server log message
      # Default:
      #	sys_logger.server_priority crit
      
      # TAG: sys_logger.LogFormat
      # Format: sys_logger.LogFormat LOGFORMAT
      # Description:
      #	The log format to use. If no log format defined then 
      #	the following will be used:
      #	    "%la %a %im %iu %is"
      # Default:
      #	None set 
      # Example:
      #	Logformat BasicFormat "%la %a %im %iu %is"
      #	sys_logger.LogFormat BasicFormat
      
      # TAG: sys_logger.access
      # Format: sys_logger.access [!]acl1 ...
      # Description:
      #	Allow selecting ICAP requests to be logged using acls.
      #	By default all requests will be logged.
      # Default:
      #	None set
      # Example:
      #	sys_logger.access all
      
      # End module: sys_logger
      
      # Module: bdb_tables
      # Description:
      #	Add support for Berkeley DB based lookup tables. The format for 
      #	bdb path of the lookup table is:
      #		bdb:/path/to/bdb
      #	Use the c-icap-mkbdb utility to build Berkeley DB c-icap lookup tables
      # Example:
      #	Module common bdb_tables.so
      
      # End module: bdb_tables
      
      # Module: dnsbl_tables
      # Description:
      #	Add support for dns lookup tables. Can be used to access
      #	dns block lists. The dnsbl lookup table path definition is:
      #	    dnsbl:domainname
      #	For example the lookup table  for accessing the black.uribl.com
      #	dns black list is: 
      #	    dnsbl:black.uribl.com
      # Example:
      #	Module common dnsbl_tables.so
      
      # End module: dnsbl_tables
      
      # Module: ldap_module
      # Description:
      #	Add LDAP support to c-icap. The user can use LDAP based lookup tables
      #	using the following lookup table path:
      #	      ldap://[username:password@]ldapserver?base?attr1,attr2?filter[{[cache=no]}]
      #	The filter can contain the "%s" formating code which will be replaced by
      #	the search key
      #	Examples of supported ldap urls:
      #	     ldap://ldap.chtsanti.net?o=chtsanti?cn,uid?uid=%s
      #	     ldap://cn=Directory Manager:Apassword@ldap.chtsanti.net?o=chtsanti?mermberUid?(&(objectClass=posixGroup)(cn=%s))
      #	
      #	WARNING: is not enough tested it may contain bugs!
      # Example:
      #	Module common ldap_module.so
      
      # End module: ldap_module
      
      [color]
      c-icap.magic[/color]
      
      [code]# In this file defined the types of files and the groups of file types. 
      # The predefined data types, which are not included in this file, 
      # are ASCII, ISO-8859, EXT-ASCII, UTF (not implemented yet), HTML 
      # which are belongs to TEXT predefined group and BINARY which 
      # belongs to DATA predefined group.
      #
      # The line format of magic file is:
      #
      # offset:Magic:Type:Short Description:Group1[:Group2[:Group3]...]
      #
      # CURRENT GROUPS are :TEXT DATA EXECUTABLE ARCHIVE GRAPHICS STREAM DOCUMENT
      
      0:MZ:MSEXE:DOS/W32 executable/library/driver:EXECUTABLE
      0:LZ:DOSEXE:MS-DOS executable:EXECUTABLE
      0:\177ELF:ELF:ELF unix executable:EXECUTABLE
      0:\312\376\272\276:JavaClass:Compiled Java class:EXECUTABLE
      
      #Archives
      0:Rar!:RAR:Rar archive:ARCHIVE
      0:PK\003\004:ZIP:Zip archive:ARCHIVE
      0:PK00PK\003\004:ZIP:Zip archive:ARCHIVE
      0:\037\213:GZip:Gzip compressed file:ARCHIVE
      0:BZh:BZip:BZip compressed file:ARCHIVE
      0:SZDD:Compress.exe:MS Copmress.exe'd compressed data:ARCHIVE
      0:\037\235:Compress:UNIX compress:ARCHIVE
      0:MSCF:MSCAB:Microsoft cabinet file:ARCHIVE
      257:ustar:TAR:Tar archive file:ARCHIVE
      0:\355\253\356\333:RPM:Linux RPM file:ARCHIVE
      0:\170\237\076\042:TNEF:Transport Neutral Encapsulation Format:ARCHIVE
      20:\xDC\xA7\xC4\xFD:ZOO:Zoo archiver:ARCHIVE
      2:-lh:LHA:Lha archiver:ARCHIVE
      #Other type of Archives
      0:ITSF:MSCHM:MS Windows Html Help:ARCHIVE
      0:!<arch>\012debian:debian:Debian package:ARCHIVE
      
      # Graphics
      0:GIF8:GIF:GIF image data:GRAPHICS
      0:BM:BMP:BMP image data:GRAPHICS
      0:\377\330:JPEG:JPEG image data:GRAPHICS
      0:\211PNG:PNG:PNG image data:GRAPHICS
      0:\000\000\001\000:ICO:MS Windows icon resource:GRAPHICS
      0:FWS:SWF:Shockwave Flash data:GRAPHICS
      0:CWS:SWF:Shockwave Flash data:GRAPHICS
      
      #STREAM
      0:\000\000\001\263:MPEG:MPEG video stream:STREAM
      0:\000\000\001\272:MPEG::STREAM
      0:RIFF:RIFF:RIFF video/audio stream:STREAM
      0:OggS:OGG:Ogg Stream:STREAM
      0:ID3:MP3:MP3 audio stream:STREAM
      0:\377\373:MP3:MP3 audio stream:STREAM
      0:\377\372:MP3:MP3 audio stream:STREAM
      0:\060\046\262\165\216\146\317:ASF:WMA/WMV/ASF:STREAM
      0:.ra\0375:RAF:Real audio stream:STREAM
      0:.RMF:RMF:Real Media File:STREAM
      0:OggS:OGG:Ogg stream data:STREAM
      8:AIFF:AIFF:AIFF audio data:STREAM
      8:AIFC:AIFF:AIFF-C audio data:STREAM
      8:8SVX:AIFF:IFF/8SVX audio data:STREAM
      
      0:MOVI:SGI:SGI video format:STREAM
      4:moov:QTFF:Quick time  video format:STREAM
      4:mdat:QTFF:Quick time  video format:STREAM
      4:wide:QTFF:Quick time  video format:STREAM
      4:skip:QTFF:Quick time  video format:STREAM
      4:free:QTFF:Quick time  video format:STREAM
      8:isom:MP4:MP4 Apple video format:STREAM
      8:mp41:MP4:MP4 Apple video format:STREAM
      8:mp42:MP4:MP4 Apple video format:STREAM
      8:mmp44:MP4:MP4 Apple video format:STREAM
      8:M4A:MP4:MP4 Apple video format:STREAM
      8:3gp:3GPP:3GPP Apple video format:STREAM
      8:avc1:3GPP:3GPP Apple video format:STREAM
      
      #Responce from stream server :-)
      0:ICY 200 OK:ShouthCast:Shouthcast audio stream:STREAM
      
      #Documents
      0:\320\317\021\340\241\261:MSOFFICE:MS Office Document:DOCUMENT
      0:\376\067\0\043:MSOFFICE:MS Office Document:DOCUMENT
      0:\333\245-\000\000\000:MSOFFICE:MS Office Document:DOCUMENT
      0:\208\207\017\224\161\177\026\225\000:MSOFFICE::DOCUMENT
      4:Standard Jet DB:MSOFFICE:MS Access Database:DOCUMENT
      0:%PDF-:PDF:PDF document:DOCUMENT
      0:%!:PS:PostScript document:DOCUMENT
      0:\004%!:PS:PostScript document:DOCUMENT
      
      [/code]
      
      ![home.plex_-_Proxy_server_General_settings_-_2015-08-28_11.57.03.png](/public/_imported_attachments_/1/home.plex_-_Proxy_server_General_settings_-_2015-08-28_11.57.03.png)
      ![home.plex_-_Proxy_server_General_settings_-_2015-08-28_11.57.03.png_thumb](/public/_imported_attachments_/1/home.plex_-_Proxy_server_General_settings_-_2015-08-28_11.57.03.png_thumb)
      ![home.plex_-_Proxy_server_Cache_management_-_2015-08-28_11.57.18.png](/public/_imported_attachments_/1/home.plex_-_Proxy_server_Cache_management_-_2015-08-28_11.57.18.png)
      ![home.plex_-_Proxy_server_Cache_management_-_2015-08-28_11.57.18.png_thumb](/public/_imported_attachments_/1/home.plex_-_Proxy_server_Cache_management_-_2015-08-28_11.57.18.png_thumb)
      ![home.plex_-_Proxy_server_Antivirus_-_2015-08-28_11.57.25.png](/public/_imported_attachments_/1/home.plex_-_Proxy_server_Antivirus_-_2015-08-28_11.57.25.png)
      ![home.plex_-_Proxy_server_Antivirus_-_2015-08-28_11.57.25.png_thumb](/public/_imported_attachments_/1/home.plex_-_Proxy_server_Antivirus_-_2015-08-28_11.57.25.png_thumb)[/s][/s]</arch></ih:></ho:></a:>
      
      1 Reply Last reply Reply Quote 0
      • KOMK
        KOM
        last edited by

        Please turn off all the icap and ClamAV like I mentioned in my previous post.  Just install and configure Squid and get it working before you add multiple layers of crap on top of it.

        1 Reply Last reply Reply Quote 0
        • F
          firefox
          last edited by

          Please turn off all the icap and ClamAV like I mentioned in my previous post

          I can not seem to do it
          i go to Services tab
          and push on stop Service

          but it is not stoping
          only squid is stop.    if i push on stop button

          and i cant remove them Because it is one package

          1 Reply Last reply Reply Quote 0
          • A
            aGeekhere
            last edited by

            under proxy server: Antivirus deselect Enable squid antivirus check using clamav.

            Never Fear, A Geek is Here!

            1 Reply Last reply Reply Quote 0
            • F
              firefox
              last edited by

              i just try
              i deselect Enable squid antivirus check using clamav

              dont work
              anti virus still work

              clamd Clamav Antivirus
              c-icap Icap inteface for squid and clamav integration

              still work

              now when i try to select Enable squid antivirus check using clamav
              i cant
              and it give me error

              ![Screenshot from 2015-08-29 11:48:35.png_thumb](/public/imported_attachments/1/Screenshot from 2015-08-29 11:48:35.png_thumb)
              ![Screenshot from 2015-08-29 11:48:35.png](/public/imported_attachments/1/Screenshot from 2015-08-29 11:48:35.png)

              1 Reply Last reply Reply Quote 0
              • A
                aGeekhere
                last edited by

                hmm got some issues there (I remember having an issue with clamav as well, could not get it to work), try restarting, then try reinstalling squid.

                Never Fear, A Geek is Here!

                1 Reply Last reply Reply Quote 0
                • F
                  firefox
                  last edited by

                  I reinstalled squid
                  and shut down c-icap and clamd
                  then restart pfsense
                  mark Transparent HTTP proxy
                  then restart again

                  and still no internt access

                  ![Screenshot from 2015-08-29 13:16:05.png](/public/imported_attachments/1/Screenshot from 2015-08-29 13:16:05.png)
                  ![Screenshot from 2015-08-29 13:16:05.png_thumb](/public/imported_attachments/1/Screenshot from 2015-08-29 13:16:05.png_thumb)

                  1 Reply Last reply Reply Quote 0
                  • F
                    firefox
                    last edited by

                    I followed the directions and it worked out

                    But still do not have Internet access in a state  Transparent HTTP proxy

                    1 Reply Last reply Reply Quote 0
                    • KOMK
                      KOM
                      last edited by

                      But still do not have Internet access

                      More details needed.  You can't get to both HTTP and HTTPS sites, or only one of the two?  Is there anything in /var/logs/squid/access.log or cache.log?  Anything in the System log?

                      1 Reply Last reply Reply Quote 0
                      • F
                        firefox
                        last edited by

                        You can't get to both HTTP and HTTPS sites, or only one of the two?

                        the only site I was able to access is pfsense forums (this site)
                        i try others with http or https but this is the only one i have access

                        Is there anything in /var/logs/squid/access.log or cache.log?

                        how do i access this ?
                        ssh to the Machine ?

                        Anything in the System log?

                        Which tabs ?

                        ![Screenshot from 2015-08-30 07:05:58.png_thumb](/public/imported_attachments/1/Screenshot from 2015-08-30 07:05:58.png_thumb)
                        ![Screenshot from 2015-08-30 07:05:58.png](/public/imported_attachments/1/Screenshot from 2015-08-30 07:05:58.png)

                        1 Reply Last reply Reply Quote 0
                        • A
                          aGeekhere
                          last edited by

                          the only site I was able to access is pfsense forums (this site)
                          i try others with http or https but this is the only one i have access

                          Try deleting the squid cache (every time I update either squid or pfsense I need to delete the squid cache or else I get this funny page load issue)

                          Never Fear, A Geek is Here!

                          1 Reply Last reply Reply Quote 0
                          • KOMK
                            KOM
                            last edited by

                            i try others with http or https but this is the only one i have access

                            That doesn't make any sense.

                            how do i access this ?
                            ssh to the Machine ?

                            Yes.

                            Which tabs ?

                            General.  Look for messages about squid.

                            1 Reply Last reply Reply Quote 0
                            • F
                              firefox
                              last edited by

                              here
                              this is log in General tab (tree part Post)

                              Aug 31 19:10:53 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                              Aug 31 19:10:52 	php-fpm[49519]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                              Aug 31 19:10:51 	kernel: fxp1: promiscuous mode enabled
                              Aug 31 19:10:51 	php-fpm[49519]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                              Aug 31 19:10:51 	kernel: fxp1: promiscuous mode disabled
                              Aug 31 19:10:51 	check_reload_status: Syncing firewall
                              Aug 31 19:10:50 	php-fpm[49519]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 19:10:50 	php-fpm[49519]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 19:10:50 	php-fpm[49519]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 19:10:50 	php-fpm[49519]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 19:10:50 	php-fpm[49519]: /rc.start_packages: Restarting/Starting all packages.
                              Aug 31 19:10:49 	check_reload_status: Starting packages
                              Aug 31 19:10:49 	php-fpm[49519]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                              Aug 31 19:10:47 	php-fpm[49519]: /rc.newwanip: Creating rrd update script
                              Aug 31 19:10:47 	php-fpm[49519]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                              Aug 31 19:10:46 	php-fpm[49519]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                              Aug 31 19:10:45 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                              Aug 31 19:10:42 	php-fpm[1273]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                              Aug 31 19:10:40 	kernel: fxp1: promiscuous mode enabled
                              Aug 31 19:10:40 	php-fpm[1273]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                              Aug 31 19:10:39 	kernel: fxp1: promiscuous mode disabled
                              Aug 31 19:10:39 	check_reload_status: Syncing firewall
                              Aug 31 19:10:38 	php-fpm[1273]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 19:10:38 	php-fpm[1273]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 19:10:38 	php-fpm[1273]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 19:10:38 	php-fpm[1273]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 19:10:38 	php-fpm[1273]: /rc.start_packages: Restarting/Starting all packages.
                              Aug 31 19:10:37 	check_reload_status: Starting packages
                              Aug 31 19:10:37 	php-fpm[59250]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                              Aug 31 19:10:37 	php-fpm[49519]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                              Aug 31 19:10:35 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                              Aug 31 19:10:35 	php-fpm[59250]: /rc.newwanip: Creating rrd update script
                              Aug 31 19:10:35 	php-fpm[59250]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                              Aug 31 19:10:34 	php-fpm[49519]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                              Aug 31 19:10:34 	php-fpm[49519]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                              Aug 31 19:10:34 	php-fpm[49519]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                              Aug 31 19:10:34 	php-fpm[49519]: /rc.start_packages: Skipping STARTing packages process because previous/another instance is already running
                              Aug 31 19:10:34 	php-fpm[59250]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                              Aug 31 19:10:33 	kernel: ath0_wlan0: link state changed to DOWN
                              Aug 31 19:10:33 	php-fpm[1273]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                              Aug 31 19:10:33 	check_reload_status: rc.newwanip starting ath0_wlan0
                              Aug 31 19:10:33 	php-fpm[49519]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                              Aug 31 19:10:33 	check_reload_status: Starting packages
                              Aug 31 19:10:33 	php-fpm[49519]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                              Aug 31 19:10:33 	php-fpm[1273]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                              Aug 31 19:10:32 	kernel: fxp1: promiscuous mode enabled
                              Aug 31 19:10:32 	kernel: fxp1: promiscuous mode disabled
                              Aug 31 19:10:32 	check_reload_status: Syncing firewall
                              Aug 31 19:10:32 	php-fpm[1273]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 19:10:32 	php-fpm[1273]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 19:10:32 	php-fpm[1273]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 19:10:32 	php-fpm[1273]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 19:10:32 	php-fpm[1273]: /rc.start_packages: Restarting/Starting all packages.
                              Aug 31 19:10:31 	php-fpm[49519]: /rc.newwanip: Creating rrd update script
                              Aug 31 19:10:31 	php-fpm[49519]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                              Aug 31 19:10:30 	check_reload_status: Linkup starting ath0_wlan0
                              Aug 31 19:10:30 	kernel: ath0_wlan0: link state changed to UP
                              Aug 31 19:10:30 	kernel: ath0_wlan0: link state changed to DOWN
                              Aug 31 19:10:30 	php-fpm[49519]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                              Aug 31 19:10:29 	check_reload_status: Starting packages
                              Aug 31 19:10:29 	php-fpm[1273]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                              Aug 31 19:10:28 	php-fpm[59250]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                              Aug 31 19:10:27 	php-fpm[1273]: /rc.newwanip: Creating rrd update script
                              Aug 31 19:10:27 	php-fpm[1273]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                              Aug 31 19:10:26 	php-fpm[59250]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                              Aug 31 19:10:26 	php-fpm[1273]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you di
                              Aug 31 19:10:25 	php-fpm[59250]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                              Aug 31 19:10:25 	php-fpm[59250]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                              Aug 31 19:10:24 	php-fpm[49519]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                              Aug 31 19:10:24 	check_reload_status: rc.newwanip starting ath0_wlan0
                              Aug 31 19:10:24 	php-fpm[59250]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                              Aug 31 19:10:23 	kernel: ath0_wlan0: link state changed to UP
                              Aug 31 19:10:23 	check_reload_status: Linkup starting ath0_wlan0
                              Aug 31 19:10:23 	kernel: ath0_wlan0: link state changed to DOWN
                              Aug 31 19:10:22 	php-fpm[49519]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                              Aug 31 19:10:21 	php-fpm[49519]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                              Aug 31 19:10:21 	php-fpm[49519]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                              Aug 31 19:10:21 	php-fpm[1273]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                              Aug 31 19:10:20 	check_reload_status: rc.newwanip starting ath0_wlan0
                              Aug 31 19:10:20 	php-fpm[49519]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                              Aug 31 19:10:19 	kernel: ath0_wlan0: link state changed to UP
                              Aug 31 19:10:19 	kernel: ath0_wlan0: link state changed to DOWN
                              Aug 31 19:10:19 	check_reload_status: Linkup starting ath0_wlan0
                              Aug 31 19:10:16 	php-fpm[1273]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                              Aug 31 19:10:16 	php-fpm[1273]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                              Aug 31 19:10:16 	php-fpm[1273]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                              Aug 31 19:10:15 	check_reload_status: rc.newwanip starting ath0_wlan0
                              Aug 31 19:10:15 	php-fpm[1273]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                              Aug 31 19:10:14 	kernel: ath0_wlan0: link state changed to UP
                              Aug 31 19:10:14 	check_reload_status: Linkup starting ath0_wlan0
                              Aug 31 19:10:14 	kernel: ath0_wlan0: link state changed to DOWN
                              Aug 31 19:10:14 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                              Aug 31 19:10:14 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                              Aug 31 19:10:13 	kernel: fxp1: promiscuous mode enabled
                              Aug 31 19:10:13 	php-fpm[59250]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                              Aug 31 19:10:12 	kernel: fxp1: promiscuous mode disabled
                              Aug 31 19:10:12 	php-fpm[59250]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                              Aug 31 19:10:12 	check_reload_status: Syncing firewall
                              Aug 31 19:10:12 	php-fpm[59250]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 19:10:12 	php-fpm[59250]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 19:10:12 	php-fpm[59250]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 19:10:12 	php-fpm[59250]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 19:10:12 	php-fpm[59250]: /rc.start_packages: Restarting/Starting all packages.
                              Aug 31 19:10:11 	check_reload_status: Starting packages
                              Aug 31 19:10:11 	php-fpm[49519]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                              Aug 31 19:10:09 	php-fpm[49519]: /rc.newwanip: Creating rrd update script
                              Aug 31 19:10:09 	php-fpm[49519]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                              Aug 31 19:10:08 	php-fpm[49519]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                              Aug 31 19:10:04 	php-fpm[49519]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                              Aug 31 19:10:02 	php-fpm[49519]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                              Aug 31 19:10:02 	php-fpm[49519]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                              Aug 31 19:10:02 	php-fpm[49519]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                              Aug 31 19:10:01 	check_reload_status: rc.newwanip starting ath0_wlan0
                              Aug 31 19:10:01 	php-fpm[49519]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                              Aug 31 19:10:00 	kernel: ath0_wlan0: link state changed to UP
                              Aug 31 19:10:00 	check_reload_status: Linkup starting ath0_wlan0
                              Aug 31 19:09:43 	kernel: ath0_wlan0: link state changed to DOWN
                              Aug 31 19:09:11 	kernel: pid 38219 (ntpd), uid 0: exited on signal 11 (core dumped)
                              Aug 31 19:09:02 	snort[39427]: [1:2010935:2] ET POLICY Suspicious inbound to MSSQL port 1433 [Classification: Potentially Bad Traffic] [Priority: 2] {TCP} 223.4.251.28:17423 -> 5.144.63.69:1433
                              Aug 31 19:09:02 	snort[39427]: [1:2010935:2] ET POLICY Suspicious inbound to MSSQL port 1433 [Classification: Potentially Bad Traffic] [Priority: 2] {TCP} 223.4.251.28:17423 -> 5.144.63.69:1433
                              Aug 31 19:08:44 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                              Aug 31 19:08:43 	php-fpm[49519]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                              Aug 31 19:08:43 	kernel: fxp1: promiscuous mode enabled
                              Aug 31 19:08:42 	check_reload_status: Syncing firewall
                              Aug 31 19:08:42 	kernel: fxp1: promiscuous mode disabled
                              Aug 31 19:08:42 	php-fpm[49519]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                              Aug 31 19:08:42 	php-fpm[49519]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 19:08:42 	php-fpm[49519]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 19:08:42 	php-fpm[49519]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 19:08:42 	php-fpm[49519]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 19:08:42 	php-fpm[49519]: /rc.start_packages: Restarting/Starting all packages.
                              Aug 31 19:08:41 	check_reload_status: Starting packages
                              Aug 31 19:08:41 	php-fpm[1273]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                              Aug 31 19:08:39 	php-fpm[1273]: /rc.newwanip: Creating rrd update script
                              Aug 31 19:08:39 	php-fpm[1273]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                              Aug 31 19:08:38 	php-fpm[1273]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you di
                              Aug 31 19:08:34 	php-fpm[1273]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                              Aug 31 19:08:32 	php-fpm[1273]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                              Aug 31 19:08:32 	php-fpm[1273]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                              Aug 31 19:08:32 	php-fpm[1273]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                              Aug 31 19:08:31 	check_reload_status: rc.newwanip starting ath0_wlan0
                              Aug 31 19:08:31 	php-fpm[1273]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                              Aug 31 19:08:30 	kernel: ath0_wlan0: link state changed to UP
                              Aug 31 19:08:30 	check_reload_status: Linkup starting ath0_wlan0
                              Aug 31 19:08:20 	snort[39427]: [1:2008578:6] ET SCAN Sipvicious Scan [Classification: Attempted Information Leak] [Priority: 2] {UDP} 69.64.58.163:5088 -> 5.144.63.69:5060
                              Aug 31 19:08:20 	snort[39427]: [1:2008578:6] ET SCAN Sipvicious Scan [Classification: Attempted Information Leak] [Priority: 2] {UDP} 69.64.58.163:5088 -> 5.144.63.69:5060
                              Aug 31 19:08:20 	snort[39427]: [1:2011716:4] ET SCAN Sipvicious User-Agent Detected (friendly-scanner) [Classification: Attempted Information Leak] [Priority: 2] {UDP} 69.64.58.163:5088 -> 5.144.63.69:5060
                              Aug 31 19:08:20 	snort[39427]: [1:2011716:4] ET SCAN Sipvicious User-Agent Detected (friendly-scanner) [Classification: Attempted Information Leak] [Priority: 2] {UDP} 69.64.58.163:5088 -> 5.144.63.69:5060
                              Aug 31 19:07:34 	snort[39427]: [1:2010935:2] ET POLICY Suspicious inbound to MSSQL port 1433 [Classification: Potentially Bad Traffic] [Priority: 2] {TCP} 42.201.166.29:6000 -> 5.144.63.69:1433
                              Aug 31 19:07:34 	snort[39427]: [1:2010935:2] ET POLICY Suspicious inbound to MSSQL port 1433 [Classification: Potentially Bad Traffic] [Priority: 2] {TCP} 42.201.166.29:6000 -> 5.144.63.69:1433
                              Aug 31 19:06:48 	snort[39427]: [1:2402000:3814] ET DROP Dshield Block Listed Source group 1 [Classification: Misc Attack] [Priority: 2] {TCP} 115.230.124.164:64316 -> 5.144.63.69:3128
                              Aug 31 19:06:48 	snort[39427]: [1:2402000:3814] ET DROP Dshield Block Listed Source group 1 [Classification: Misc Attack] [Priority: 2] {TCP} 115.230.124.164:64316 -> 5.144.63.69:3128
                              Aug 31 19:04:10 	snort[39427]: [1:2010935:2] ET POLICY Suspicious inbound to MSSQL port 1433 [Classification: Potentially Bad Traffic] [Priority: 2] {TCP} 221.231.6.208:35720 -> 5.144.63.69:1433
                              Aug 31 19:04:10 	snort[39427]: [1:2010935:2] ET POLICY Suspicious inbound to MSSQL port 1433 [Classification: Potentially Bad Traffic] [Priority: 2] {TCP} 221.231.6.208:35720 -> 5.144.63.69:1433
                              Aug 31 19:03:45 	kernel: ath0_wlan0: link state changed to DOWN
                              Aug 31 19:03:10 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                              Aug 31 19:03:08 	kernel: fxp1: promiscuous mode enabled
                              Aug 31 19:03:08 	php-fpm[1273]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                              Aug 31 19:03:08 	php-fpm[1273]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                              Aug 31 19:03:08 	kernel: fxp1: promiscuous mode disabled
                              Aug 31 19:03:08 	check_reload_status: Syncing firewall
                              Aug 31 19:03:08 	php-fpm[1273]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 19:03:08 	php-fpm[1273]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 19:03:07 	php-fpm[1273]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 19:03:07 	php-fpm[1273]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 19:03:07 	php-fpm[1273]: /rc.start_packages: Restarting/Starting all packages.
                              Aug 31 19:03:06 	check_reload_status: Starting packages
                              Aug 31 19:03:06 	php-fpm[49519]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                              Aug 31 19:03:04 	php-fpm[49519]: /rc.newwanip: Creating rrd update script
                              Aug 31 19:03:04 	php-fpm[49519]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                              Aug 31 19:03:03 	php-fpm[49519]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                              Aug 31 19:02:59 	php-fpm[49519]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                              Aug 31 19:02:57 	php-fpm[49519]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                              Aug 31 19:02:57 	php-fpm[49519]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                              Aug 31 19:02:57 	php-fpm[49519]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                              Aug 31 19:02:56 	check_reload_status: rc.newwanip starting ath0_wlan0
                              Aug 31 19:02:56 	php-fpm[49519]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                              Aug 31 19:02:55 	kernel: ath0_wlan0: link state changed to UP
                              Aug 31 19:02:55 	check_reload_status: Linkup starting ath0_wlan0
                              Aug 31 19:00:02 	check_reload_status: Syncing firewall
                              Aug 31 19:00:02 	php: sarg.php: executing squid log rotate after sarg.
                              Aug 31 19:00:01 	php: pfblockerng.php: [pfBlockerNG] Starting sync process.
                              Aug 31 19:00:01 	php: sarg.php: Sarg: force refresh now with args, compress(on) and rotate action after sarg finish.
                              Aug 31 18:56:33 	kernel: ath0_wlan0: link state changed to DOWN
                              Aug 31 18:55:29 	snort[39427]: [1:2008578:6] ET SCAN Sipvicious Scan [Classification: Attempted Information Leak] [Priority: 2] {UDP} 85.93.88.107:5104 -> 5.144.63.69:5060
                              Aug 31 18:55:29 	snort[39427]: [1:2008578:6] ET SCAN Sipvicious Scan [Classification: Attempted Information Leak] [Priority: 2] {UDP} 85.93.88.107:5104 -> 5.144.63.69:5060
                              Aug 31 18:55:29 	snort[39427]: [1:2011716:4] ET SCAN Sipvicious User-Agent Detected (friendly-scanner) [Classification: Attempted Information Leak] [Priority: 2] {UDP} 85.93.88.107:5104 -> 5.144.63.69:5060
                              Aug 31 18:55:29 	snort[39427]: [1:2011716:4] ET SCAN Sipvicious User-Agent Detected (friendly-scanner) [Classification: Attempted Information Leak] [Priority: 2] {UDP} 85.93.88.107:5104 -> 5.144.63.69:5060
                              Aug 31 18:55:04 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                              Aug 31 18:55:03 	php-fpm[43836]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                              Aug 31 18:55:02 	kernel: fxp1: promiscuous mode enabled
                              Aug 31 18:55:02 	php-fpm[43836]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                              Aug 31 18:55:02 	kernel: fxp1: promiscuous mode disabled
                              Aug 31 18:55:02 	check_reload_status: Syncing firewall
                              Aug 31 18:55:01 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:55:01 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:55:01 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:55:01 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:55:01 	php-fpm[43836]: /rc.start_packages: Restarting/Starting all packages.
                              Aug 31 18:55:00 	check_reload_status: Starting packages
                              Aug 31 18:55:00 	php-fpm[75108]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                              Aug 31 18:54:58 	php-fpm[75108]: /rc.newwanip: Creating rrd update script
                              Aug 31 18:54:58 	php-fpm[75108]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                              Aug 31 18:54:57 	php-fpm[75108]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                              Aug 31 18:54:53 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                              Aug 31 18:54:51 	php-fpm[75108]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                              Aug 31 18:54:50 	php-fpm[49519]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                              Aug 31 18:54:50 	php-fpm[43836]: /rc.start_packages: Skipping STARTing packages process because previous/another instance is already running
                              Aug 31 18:54:50 	kernel: fxp1: promiscuous mode enabled
                              Aug 31 18:54:49 	php-fpm[49519]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                              Aug 31 18:54:49 	check_reload_status: Starting packages
                              Aug 31 18:54:49 	php-fpm[43836]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                              Aug 31 18:54:49 	kernel: fxp1: promiscuous mode disabled
                              Aug 31 18:54:49 	check_reload_status: Syncing firewall
                              Aug 31 18:54:48 	php-fpm[49519]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:54:48 	php-fpm[49519]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:54:48 	php-fpm[49519]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:54:48 	php-fpm[49519]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:54:48 	php-fpm[49519]: /rc.start_packages: Restarting/Starting all packages.
                              Aug 31 18:54:48 	php-fpm[75108]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                              Aug 31 18:54:48 	php-fpm[75108]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                              Aug 31 18:54:48 	php-fpm[75108]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                              Aug 31 18:54:47 	php-fpm[43836]: /rc.newwanip: Creating rrd update script
                              Aug 31 18:54:47 	php-fpm[43836]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                              Aug 31 18:54:46 	check_reload_status: Starting packages
                              Aug 31 18:54:46 	php-fpm[75108]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                              Aug 31 18:54:46 	php-fpm[43836]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                              Aug 31 18:54:45 	check_reload_status: rc.newwanip starting ath0_wlan0
                              Aug 31 18:54:45 	php-fpm[49519]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                              Aug 31 18:54:44 	php-fpm[75108]: /rc.newwanip: Creating rrd update script
                              Aug 31 18:54:44 	php-fpm[75108]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                              Aug 31 18:54:44 	kernel: ath0_wlan0: link state changed to UP
                              Aug 31 18:54:44 	kernel: ath0_wlan0: link state changed to DOWN
                              Aug 31 18:54:44 	check_reload_status: Linkup starting ath0_wlan0
                              Aug 31 18:54:43 	php-fpm[75108]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                              Aug 31 18:54:42 	php-fpm[43836]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                              Aug 31 18:54:38 	php-fpm[43836]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                              Aug 31 18:54:38 	php-fpm[43836]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                              Aug 31 18:54:38 	php-fpm[43836]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                              Aug 31 18:54:38 	php-fpm[75108]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                              Aug 31 18:54:37 	check_reload_status: rc.newwanip starting ath0_wlan0
                              Aug 31 18:54:37 	php-fpm[49519]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                              Aug 31 18:54:36 	kernel: ath0_wlan0: link state changed to UP
                              Aug 31 18:54:36 	kernel: ath0_wlan0: link state changed to DOWN
                              Aug 31 18:54:36 	check_reload_status: Linkup starting ath0_wlan0
                              Aug 31 18:54:35 	php-fpm[75108]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                              Aug 31 18:54:35 	php-fpm[75108]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                              Aug 31 18:54:35 	php-fpm[75108]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                              Aug 31 18:54:34 	check_reload_status: rc.newwanip starting ath0_wlan0
                              Aug 31 18:54:34 	php-fpm[49519]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                              Aug 31 18:54:33 	kernel: ath0_wlan0: link state changed to UP
                              Aug 31 18:54:33 	kernel: ath0_wlan0: link state changed to DOWN
                              Aug 31 18:54:33 	check_reload_status: Linkup starting ath0_wlan0
                              Aug 31 18:54:32 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                              Aug 31 18:54:31 	php-fpm[75108]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                              Aug 31 18:54:30 	php-fpm[75108]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                              Aug 31 18:54:30 	kernel: fxp1: promiscuous mode enabled
                              Aug 31 18:54:30 	kernel: fxp1: promiscuous mode disabled
                              Aug 31 18:54:30 	check_reload_status: Syncing firewall
                              Aug 31 18:54:30 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:54:30 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:54:30 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:54:30 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:54:30 	php-fpm[75108]: /rc.start_packages: Restarting/Starting all packages.
                              Aug 31 18:54:29 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                              Aug 31 18:54:29 	check_reload_status: Starting packages
                              Aug 31 18:54:29 	php-fpm[49519]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                              Aug 31 18:54:27 	php-fpm[75108]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                              Aug 31 18:54:27 	php-fpm[75108]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                              Aug 31 18:54:27 	kernel: fxp1: promiscuous mode enabled
                              Aug 31 18:54:27 	kernel: fxp1: promiscuous mode disabled
                              Aug 31 18:54:27 	php-fpm[49519]: /rc.newwanip: Creating rrd update script
                              Aug 31 18:54:26 	php-fpm[49519]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                              Aug 31 18:54:26 	check_reload_status: Syncing firewall
                              Aug 31 18:54:26 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:54:26 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:54:26 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:54:26 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:54:26 	php-fpm[75108]: /rc.start_packages: Restarting/Starting all packages.
                              Aug 31 18:54:25 	php-fpm[49519]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                              Aug 31 18:54:25 	check_reload_status: Starting packages
                              Aug 31 18:54:25 	php-fpm[75108]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                              Aug 31 18:54:22 	php-fpm[75108]: /rc.newwanip: Creating rrd update script
                              Aug 31 18:54:22 	php-fpm[75108]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                              Aug 31 18:54:21 	php-fpm[75108]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                              Aug 31 18:54:20 	php-fpm[49519]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                              Aug 31 18:54:19 	php-fpm[49519]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                              Aug 31 18:54:19 	php-fpm[49519]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                              Aug 31 18:54:19 	php-fpm[49519]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                              Aug 31 18:54:18 	check_reload_status: rc.newwanip starting ath0_wlan0
                              Aug 31 18:54:17 	php-fpm[43836]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                              Aug 31 18:54:17 	php-fpm[75108]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                              Aug 31 18:54:16 	kernel: ath0_wlan0: link state changed to UP
                              Aug 31 18:54:16 	check_reload_status: Linkup starting ath0_wlan0
                              Aug 31 18:54:14 	kernel: ath0_wlan0: link state changed to DOWN
                              Aug 31 18:54:14 	php-fpm[75108]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                              Aug 31 18:54:14 	php-fpm[75108]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                              Aug 31 18:54:14 	php-fpm[75108]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                              Aug 31 18:54:12 	check_reload_status: rc.newwanip starting ath0_wlan0
                              Aug 31 18:54:12 	php-fpm[43836]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                              Aug 31 18:54:11 	kernel: ath0_wlan0: link state changed to UP
                              Aug 31 18:54:11 	check_reload_status: Linkup starting ath0_wlan0
                              Aug 31 18:54:10 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                              Aug 31 18:54:10 	kernel: ath0_wlan0: link state changed to DOWN
                              Aug 31 18:54:08 	kernel: fxp1: promiscuous mode enabled
                              Aug 31 18:54:08 	php-fpm[49519]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                              Aug 31 18:54:08 	php-fpm[49519]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                              Aug 31 18:54:08 	kernel: fxp1: promiscuous mode disabled
                              Aug 31 18:54:08 	check_reload_status: Syncing firewall
                              Aug 31 18:54:08 	php-fpm[49519]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:54:08 	php-fpm[49519]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:54:08 	php-fpm[49519]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:54:08 	php-fpm[49519]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:54:08 	php-fpm[49519]: /rc.start_packages: Restarting/Starting all packages.
                              Aug 31 18:54:06 	check_reload_status: Starting packages
                              Aug 31 18:54:06 	php-fpm[75108]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                              Aug 31 18:54:04 	php-fpm[75108]: /rc.newwanip: Creating rrd update script
                              Aug 31 18:54:04 	php-fpm[75108]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                              Aug 31 18:54:03 	php-fpm[75108]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                              Aug 31 18:53:59 	php-fpm[75108]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                              Aug 31 18:53:58 	php-fpm[75108]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                              Aug 31 18:53:58 	php-fpm[75108]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                              Aug 31 18:53:58 	php-fpm[75108]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                              Aug 31 18:53:57 	check_reload_status: rc.newwanip starting ath0_wlan0
                              Aug 31 18:53:57 	php-fpm[75108]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                              Aug 31 18:53:56 	kernel: ath0_wlan0: link state changed to UP
                              Aug 31 18:53:56 	check_reload_status: Linkup starting ath0_wlan0
                              Aug 31 18:53:41 	kernel: ath0_wlan0: link state changed to DOWN
                              Aug 31 18:53:03 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                              Aug 31 18:53:01 	kernel: fxp1: promiscuous mode enabled
                              Aug 31 18:53:01 	php-fpm[43836]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                              Aug 31 18:53:00 	php-fpm[43836]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                              Aug 31 18:53:00 	kernel: fxp1: promiscuous mode disabled
                              Aug 31 18:53:00 	check_reload_status: Syncing firewall
                              Aug 31 18:53:00 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:53:00 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:53:00 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:53:00 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:53:00 	php-fpm[43836]: /rc.start_packages: Restarting/Starting all packages.
                              Aug 31 18:52:59 	check_reload_status: Starting packages
                              Aug 31 18:52:59 	php-fpm[75108]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                              Aug 31 18:52:57 	php-fpm[75108]: /rc.newwanip: Creating rrd update script
                              Aug 31 18:52:57 	php-fpm[75108]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                              Aug 31 18:52:56 	php-fpm[75108]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                              Aug 31 18:52:52 	php-fpm[75108]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                              Aug 31 18:52:51 	php-fpm[75108]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                              Aug 31 18:52:51 	php-fpm[75108]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                              Aug 31 18:52:51 	php-fpm[75108]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                              Aug 31 18:52:50 	check_reload_status: rc.newwanip starting ath0_wlan0
                              Aug 31 18:52:50 	php-fpm[75108]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                              Aug 31 18:52:49 	check_reload_status: Linkup starting ath0_wlan0
                              Aug 31 18:52:49 	kernel: ath0_wlan0: link state changed to UP
                              Aug 31 18:52:49 	kernel: ath0_wlan0: link state changed to DOWN
                              Aug 31 18:51:15 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                              Aug 31 18:51:13 	kernel: fxp1: promiscuous mode enabled
                              Aug 31 18:51:13 	php-fpm[49519]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                              Aug 31 18:51:13 	check_reload_status: Syncing firewall
                              Aug 31 18:51:13 	kernel: fxp1: promiscuous mode disabled
                              Aug 31 18:51:13 	php-fpm[49519]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                              Aug 31 18:51:13 	php-fpm[49519]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:51:13 	php-fpm[49519]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:51:13 	php-fpm[49519]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:51:13 	php-fpm[49519]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:51:13 	php-fpm[49519]: /rc.start_packages: Restarting/Starting all packages.
                              Aug 31 18:51:12 	check_reload_status: Starting packages
                              Aug 31 18:51:12 	php-fpm[75108]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                              Aug 31 18:51:10 	php-fpm[75108]: /rc.newwanip: Creating rrd update script
                              Aug 31 18:51:10 	php-fpm[75108]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                              Aug 31 18:51:08 	php-fpm[75108]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                              Aug 31 18:51:04 	php-fpm[75108]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                              Aug 31 18:51:02 	php-fpm[75108]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                              Aug 31 18:51:02 	php-fpm[75108]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                              Aug 31 18:51:02 	php-fpm[75108]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                              Aug 31 18:51:01 	check_reload_status: rc.newwanip starting ath0_wlan0
                              Aug 31 18:51:01 	php-fpm[75108]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                              Aug 31 18:51:00 	kernel: ath0_wlan0: link state changed to UP
                              Aug 31 18:51:00 	check_reload_status: Linkup starting ath0_wlan0
                              Aug 31 18:50:52 	kernel: ath0_wlan0: link state changed to DOWN
                              Aug 31 18:49:29 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                              Aug 31 18:49:28 	kernel: fxp1: promiscuous mode enabled
                              Aug 31 18:49:28 	php-fpm[43836]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                              Aug 31 18:49:28 	check_reload_status: Syncing firewall
                              Aug 31 18:49:28 	kernel: fxp1: promiscuous mode disabled
                              Aug 31 18:49:28 	php-fpm[43836]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                              Aug 31 18:49:27 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:49:27 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:49:27 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:49:27 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                              Aug 31 18:49:27 	php-fpm[43836]: /rc.start_packages: Restarting/Starting all packages.
                              Aug 31 18:49:26 	check_reload_status: Starting packages
                              Aug 31 18:49:26 	php-fpm[75108]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                              Aug 31 18:49:24 	php-fpm[75108]: /rc.newwanip: Creating rrd update script
                              Aug 31 18:49:24 	php-fpm[75108]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                              Aug 31 18:49:23 	php-fpm[75108]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                              

                              how do i access this ?
                                  ssh to the Machine ?

                              Yes.

                              dont work
                              Or more accurately i dont know how

                              ![Screenshot from 2015-08-31 18:16:09.png](/public/imported_attachments/1/Screenshot from 2015-08-31 18:16:09.png)
                              ![Screenshot from 2015-08-31 18:16:09.png_thumb](/public/imported_attachments/1/Screenshot from 2015-08-31 18:16:09.png_thumb)

                              1 Reply Last reply Reply Quote 0
                              • F
                                firefox
                                last edited by

                                part two

                                Aug 31 18:49:19 	php-fpm[75108]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                Aug 31 18:49:18 	php-fpm[75108]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                Aug 31 18:49:18 	php-fpm[75108]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                Aug 31 18:49:18 	php-fpm[75108]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                Aug 31 18:49:17 	check_reload_status: rc.newwanip starting ath0_wlan0
                                Aug 31 18:49:17 	php-fpm[75108]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                                Aug 31 18:49:16 	kernel: ath0_wlan0: link state changed to UP
                                Aug 31 18:49:16 	check_reload_status: Linkup starting ath0_wlan0
                                Aug 31 18:48:52 	kernel: pid 71745 (ntpd), uid 0: exited on signal 11 (core dumped)
                                Aug 31 18:48:29 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                                Aug 31 18:48:27 	kernel: fxp1: promiscuous mode enabled
                                Aug 31 18:48:27 	php-fpm[43836]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                                Aug 31 18:48:27 	php-fpm[43836]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                                Aug 31 18:48:27 	check_reload_status: Syncing firewall
                                Aug 31 18:48:27 	kernel: fxp1: promiscuous mode disabled
                                Aug 31 18:48:27 	kernel: ath0_wlan0: link state changed to DOWN
                                Aug 31 18:48:27 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:48:27 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:48:27 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:48:27 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:48:27 	php-fpm[43836]: /rc.start_packages: Restarting/Starting all packages.
                                Aug 31 18:48:26 	check_reload_status: Starting packages
                                Aug 31 18:48:26 	php-fpm[49519]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                                Aug 31 18:48:23 	php-fpm[49519]: /rc.newwanip: Creating rrd update script
                                Aug 31 18:48:23 	php-fpm[49519]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                                Aug 31 18:48:22 	php-fpm[49519]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                                Aug 31 18:48:15 	php-fpm[49519]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                Aug 31 18:48:14 	php-fpm[49519]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                Aug 31 18:48:14 	php-fpm[49519]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                Aug 31 18:48:14 	php-fpm[49519]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                Aug 31 18:48:13 	check_reload_status: rc.newwanip starting ath0_wlan0
                                Aug 31 18:48:13 	php-fpm[49519]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                                Aug 31 18:48:12 	kernel: ath0_wlan0: link state changed to UP
                                Aug 31 18:48:12 	check_reload_status: Linkup starting ath0_wlan0
                                Aug 31 18:46:07 	kernel: ath0_wlan0: link state changed to DOWN
                                Aug 31 18:46:05 	php-fpm[83027]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                                Aug 31 18:46:05 	kernel: fxp1: promiscuous mode enabled
                                Aug 31 18:46:05 	php-fpm[83027]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                                Aug 31 18:46:04 	kernel: fxp1: promiscuous mode disabled
                                Aug 31 18:46:04 	check_reload_status: Syncing firewall
                                Aug 31 18:46:04 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:46:04 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:46:04 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:46:04 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:46:04 	php-fpm[83027]: /rc.start_packages: Restarting/Starting all packages.
                                Aug 31 18:46:03 	check_reload_status: Starting packages
                                Aug 31 18:46:03 	php-fpm[75108]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                                Aug 31 18:46:01 	php-fpm[75108]: /rc.newwanip: Creating rrd update script
                                Aug 31 18:46:01 	php-fpm[75108]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                                Aug 31 18:46:00 	php-fpm[75108]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                                Aug 31 18:45:56 	php-fpm[75108]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                Aug 31 18:45:54 	php-fpm[75108]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                Aug 31 18:45:54 	php-fpm[75108]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                Aug 31 18:45:54 	php-fpm[75108]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                Aug 31 18:45:53 	check_reload_status: rc.newwanip starting ath0_wlan0
                                Aug 31 18:45:53 	php-fpm[43836]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                                Aug 31 18:45:52 	kernel: ath0_wlan0: link state changed to UP
                                Aug 31 18:45:52 	check_reload_status: Linkup starting ath0_wlan0
                                Aug 31 18:44:09 	kernel: ath0_wlan0: link state changed to DOWN
                                Aug 31 18:43:35 	kernel: fxp1: promiscuous mode enabled
                                Aug 31 18:43:35 	php-fpm[75108]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                                Aug 31 18:43:35 	check_reload_status: Syncing firewall
                                Aug 31 18:43:35 	php-fpm[75108]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                                Aug 31 18:43:35 	kernel: fxp1: promiscuous mode disabled
                                Aug 31 18:43:34 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:43:34 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:43:34 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:43:34 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:43:34 	php-fpm[75108]: /rc.start_packages: Restarting/Starting all packages.
                                Aug 31 18:43:33 	check_reload_status: Starting packages
                                Aug 31 18:43:33 	php-fpm[83027]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                                Aug 31 18:43:31 	php-fpm[83027]: /rc.newwanip: Creating rrd update script
                                Aug 31 18:43:31 	php-fpm[83027]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                                Aug 31 18:43:30 	php-fpm[83027]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                                Aug 31 18:43:26 	php-fpm[83027]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                Aug 31 18:43:24 	php-fpm[83027]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                Aug 31 18:43:24 	php-fpm[83027]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                Aug 31 18:43:24 	php-fpm[83027]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                Aug 31 18:43:23 	check_reload_status: rc.newwanip starting ath0_wlan0
                                Aug 31 18:43:23 	php-fpm[83027]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                                Aug 31 18:43:22 	kernel: ath0_wlan0: link state changed to UP
                                Aug 31 18:43:22 	check_reload_status: Linkup starting ath0_wlan0
                                Aug 31 18:43:17 	kernel: ath0_wlan0: link state changed to DOWN
                                Aug 31 18:42:42 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                                Aug 31 18:42:40 	kernel: fxp1: promiscuous mode enabled
                                Aug 31 18:42:40 	php-fpm[43836]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                                Aug 31 18:42:40 	check_reload_status: Syncing firewall
                                Aug 31 18:42:40 	kernel: fxp1: promiscuous mode disabled
                                Aug 31 18:42:40 	php-fpm[43836]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                                Aug 31 18:42:40 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:42:40 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:42:40 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:42:40 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:42:40 	php-fpm[43836]: /rc.start_packages: Restarting/Starting all packages.
                                Aug 31 18:42:38 	check_reload_status: Starting packages
                                Aug 31 18:42:38 	php-fpm[75108]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                                Aug 31 18:42:36 	php-fpm[75108]: /rc.newwanip: Creating rrd update script
                                Aug 31 18:42:36 	php-fpm[75108]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                                Aug 31 18:42:35 	php-fpm[75108]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                                Aug 31 18:42:28 	php-fpm[75108]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                Aug 31 18:42:27 	php-fpm[75108]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                Aug 31 18:42:27 	php-fpm[75108]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                Aug 31 18:42:27 	php-fpm[75108]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                Aug 31 18:42:26 	check_reload_status: rc.newwanip starting ath0_wlan0
                                Aug 31 18:42:26 	php-fpm[75108]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                                Aug 31 18:42:25 	kernel: ath0_wlan0: link state changed to UP
                                Aug 31 18:42:25 	kernel: ath0_wlan0: link state changed to DOWN
                                Aug 31 18:42:25 	check_reload_status: Linkup starting ath0_wlan0
                                Aug 31 18:42:24 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                                Aug 31 18:42:23 	kernel: fxp1: promiscuous mode enabled
                                Aug 31 18:42:22 	php-fpm[83027]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                                Aug 31 18:42:22 	check_reload_status: Syncing firewall
                                Aug 31 18:42:22 	php-fpm[83027]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                                Aug 31 18:42:22 	kernel: fxp1: promiscuous mode disabled
                                Aug 31 18:42:22 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:42:22 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:42:22 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:42:22 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:42:22 	php-fpm[83027]: /rc.start_packages: Restarting/Starting all packages.
                                Aug 31 18:42:21 	check_reload_status: Starting packages
                                Aug 31 18:42:21 	php-fpm[43836]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                                Aug 31 18:42:19 	php-fpm[43836]: /rc.newwanip: Creating rrd update script
                                Aug 31 18:42:19 	php-fpm[43836]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                                Aug 31 18:42:18 	php-fpm[43836]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                                Aug 31 18:42:14 	php-fpm[43836]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                Aug 31 18:42:13 	php-fpm[43836]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                Aug 31 18:42:13 	php-fpm[43836]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                Aug 31 18:42:13 	php-fpm[43836]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                Aug 31 18:42:12 	check_reload_status: rc.newwanip starting ath0_wlan0
                                Aug 31 18:42:12 	php-fpm[43836]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                                Aug 31 18:42:11 	kernel: ath0_wlan0: link state changed to UP
                                Aug 31 18:42:11 	check_reload_status: Linkup starting ath0_wlan0
                                Aug 31 18:42:07 	kernel: ath0_wlan0: link state changed to DOWN
                                Aug 31 18:42:02 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                                Aug 31 18:42:00 	kernel: fxp1: promiscuous mode enabled
                                Aug 31 18:42:00 	php-fpm[75108]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                                Aug 31 18:42:00 	check_reload_status: Syncing firewall
                                Aug 31 18:42:00 	kernel: fxp1: promiscuous mode disabled
                                Aug 31 18:42:00 	php-fpm[75108]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                                Aug 31 18:42:00 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:42:00 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:42:00 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:42:00 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:42:00 	php-fpm[75108]: /rc.start_packages: Restarting/Starting all packages.
                                Aug 31 18:41:59 	check_reload_status: Starting packages
                                Aug 31 18:41:59 	php-fpm[83027]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                                Aug 31 18:41:57 	php-fpm[83027]: /rc.newwanip: Creating rrd update script
                                Aug 31 18:41:57 	php-fpm[83027]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                                Aug 31 18:41:56 	php-fpm[83027]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                                Aug 31 18:41:51 	php-fpm[83027]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                Aug 31 18:41:50 	php-fpm[83027]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                Aug 31 18:41:50 	php-fpm[83027]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                Aug 31 18:41:50 	php-fpm[83027]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                Aug 31 18:41:49 	check_reload_status: rc.newwanip starting ath0_wlan0
                                Aug 31 18:41:49 	php-fpm[83027]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                                Aug 31 18:41:48 	kernel: ath0_wlan0: link state changed to UP
                                Aug 31 18:41:48 	check_reload_status: Linkup starting ath0_wlan0
                                Aug 31 18:41:29 	kernel: ath0_wlan0: link state changed to DOWN
                                Aug 31 18:40:54 	kernel: pid 80378 (ntpd), uid 0: exited on signal 11 (core dumped)
                                Aug 31 18:40:30 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                                Aug 31 18:40:28 	kernel: fxp1: promiscuous mode enabled
                                Aug 31 18:40:28 	php-fpm[43836]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                                Aug 31 18:40:28 	check_reload_status: Syncing firewall
                                Aug 31 18:40:28 	kernel: fxp1: promiscuous mode disabled
                                Aug 31 18:40:28 	php-fpm[43836]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                                Aug 31 18:40:28 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:40:28 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:40:28 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:40:28 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:40:28 	php-fpm[43836]: /rc.start_packages: Restarting/Starting all packages.
                                Aug 31 18:40:27 	check_reload_status: Starting packages
                                Aug 31 18:40:27 	php-fpm[75108]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                                Aug 31 18:40:25 	php-fpm[75108]: /rc.newwanip: Creating rrd update script
                                Aug 31 18:40:25 	php-fpm[75108]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                                Aug 31 18:40:24 	php-fpm[75108]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                                Aug 31 18:40:20 	php-fpm[75108]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                Aug 31 18:40:18 	php-fpm[75108]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                Aug 31 18:40:18 	php-fpm[75108]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                Aug 31 18:40:18 	php-fpm[75108]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                Aug 31 18:40:17 	check_reload_status: rc.newwanip starting ath0_wlan0
                                Aug 31 18:40:17 	php-fpm[75108]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                                Aug 31 18:40:16 	kernel: ath0_wlan0: link state changed to UP
                                Aug 31 18:40:16 	check_reload_status: Linkup starting ath0_wlan0
                                Aug 31 18:36:36 	snort[39427]: [1:2010935:2] ET POLICY Suspicious inbound to MSSQL port 1433 [Classification: Potentially Bad Traffic] [Priority: 2] {TCP} 218.31.113.73:6000 -> 5.144.63.69:1433
                                Aug 31 18:36:36 	snort[39427]: [1:2010935:2] ET POLICY Suspicious inbound to MSSQL port 1433 [Classification: Potentially Bad Traffic] [Priority: 2] {TCP} 218.31.113.73:6000 -> 5.144.63.69:1433
                                Aug 31 18:35:26 	kernel: ath0_wlan0: link state changed to DOWN
                                Aug 31 18:35:23 	kernel: pid 88404 (ntpd), uid 0: exited on signal 11 (core dumped)
                                Aug 31 18:34:56 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                                Aug 31 18:34:54 	kernel: fxp1: promiscuous mode enabled
                                Aug 31 18:34:54 	php-fpm[83027]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                                Aug 31 18:34:54 	check_reload_status: Syncing firewall
                                Aug 31 18:34:54 	kernel: fxp1: promiscuous mode disabled
                                Aug 31 18:34:54 	php-fpm[83027]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                                Aug 31 18:34:54 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:34:54 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:34:54 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:34:54 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:34:54 	php-fpm[83027]: /rc.start_packages: Restarting/Starting all packages.
                                Aug 31 18:34:53 	check_reload_status: Starting packages
                                Aug 31 18:34:53 	php-fpm[43836]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                                Aug 31 18:34:51 	php-fpm[43836]: /rc.newwanip: Creating rrd update script
                                Aug 31 18:34:51 	php-fpm[43836]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                                Aug 31 18:34:50 	php-fpm[43836]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                                Aug 31 18:34:46 	php-fpm[43836]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                Aug 31 18:34:44 	php-fpm[43836]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                Aug 31 18:34:44 	php-fpm[43836]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                Aug 31 18:34:44 	php-fpm[43836]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                Aug 31 18:34:43 	check_reload_status: rc.newwanip starting ath0_wlan0
                                Aug 31 18:34:43 	php-fpm[43836]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                                Aug 31 18:34:42 	kernel: ath0_wlan0: link state changed to UP
                                Aug 31 18:34:42 	check_reload_status: Linkup starting ath0_wlan0
                                Aug 31 18:32:38 	kernel: ath0_wlan0: link state changed to DOWN
                                Aug 31 18:32:10 	php-fpm[75108]: /status_services.php: NTPD is starting up.
                                Aug 31 18:32:09 	php-fpm[83027]: /status_services.php: NTPD is starting up.
                                Aug 31 18:29:48 	kernel: pid 27719 (ntpd), uid 0: exited on signal 11 (core dumped)
                                Aug 31 18:29:23 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                                Aug 31 18:29:22 	php-fpm[83027]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                                Aug 31 18:29:22 	kernel: fxp1: promiscuous mode enabled
                                Aug 31 18:29:22 	check_reload_status: Syncing firewall
                                Aug 31 18:29:21 	php-fpm[83027]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                                Aug 31 18:29:21 	kernel: fxp1: promiscuous mode disabled
                                Aug 31 18:29:21 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:29:21 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:29:21 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:29:21 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                Aug 31 18:29:21 	php-fpm[83027]: /rc.start_packages: Restarting/Starting all packages.
                                Aug 31 18:29:20 	check_reload_status: Starting packages
                                Aug 31 18:29:20 	php-fpm[43836]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                                Aug 31 18:29:18 	php-fpm[43836]: /rc.newwanip: Creating rrd update script
                                Aug 31 18:29:18 	php-fpm[43836]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                                Aug 31 18:29:17 	php-fpm[43836]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                                
                                1 Reply Last reply Reply Quote 0
                                • F
                                  firefox
                                  last edited by

                                  part tree

                                  Aug 31 18:29:13 	php-fpm[43836]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                  Aug 31 18:29:11 	php-fpm[43836]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                  Aug 31 18:29:11 	php-fpm[43836]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                  Aug 31 18:29:11 	php-fpm[43836]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                  Aug 31 18:29:10 	check_reload_status: rc.newwanip starting ath0_wlan0
                                  Aug 31 18:29:10 	php-fpm[43836]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                                  Aug 31 18:29:09 	kernel: ath0_wlan0: link state changed to UP
                                  Aug 31 18:29:09 	check_reload_status: Linkup starting ath0_wlan0
                                  Aug 31 18:29:07 	kernel: ath0_wlan0: link state changed to DOWN
                                  Aug 31 18:28:45 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                                  Aug 31 18:28:44 	kernel: fxp1: promiscuous mode enabled
                                  Aug 31 18:28:44 	php-fpm[75108]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                                  Aug 31 18:28:44 	check_reload_status: Syncing firewall
                                  Aug 31 18:28:43 	php-fpm[75108]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                                  Aug 31 18:28:43 	php-fpm[75108]: /rc.start_packages: The command '/usr/local/etc/rc.d/arpwatch.sh stop' returned exit code '1', the output was 'No matching processes were found'
                                  Aug 31 18:28:43 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:28:43 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:28:43 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:28:43 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:28:43 	php-fpm[75108]: /rc.start_packages: Restarting/Starting all packages.
                                  Aug 31 18:28:42 	check_reload_status: Starting packages
                                  Aug 31 18:28:42 	php-fpm[83027]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                                  Aug 31 18:28:40 	php-fpm[83027]: /rc.newwanip: Creating rrd update script
                                  Aug 31 18:28:40 	php-fpm[83027]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                                  Aug 31 18:28:39 	php-fpm[83027]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                                  Aug 31 18:28:35 	php-fpm[83027]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                  Aug 31 18:28:33 	php-fpm[83027]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                  Aug 31 18:28:33 	php-fpm[83027]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                  Aug 31 18:28:33 	php-fpm[83027]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                  Aug 31 18:28:32 	check_reload_status: rc.newwanip starting ath0_wlan0
                                  Aug 31 18:28:32 	php-fpm[83027]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                                  Aug 31 18:28:31 	kernel: ath0_wlan0: link state changed to UP
                                  Aug 31 18:28:31 	check_reload_status: Linkup starting ath0_wlan0
                                  Aug 31 18:28:21 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                                  Aug 31 18:28:19 	kernel: fxp1: promiscuous mode disabled
                                  Aug 31 18:28:19 	php-fpm[43836]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                                  Aug 31 18:28:19 	kernel: fxp1: promiscuous mode enabled
                                  Aug 31 18:28:19 	kernel: fxp1: promiscuous mode disabled
                                  Aug 31 18:28:19 	php-fpm[43836]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                                  Aug 31 18:28:18 	check_reload_status: Syncing firewall
                                  Aug 31 18:28:18 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:28:18 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:28:18 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:28:18 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:28:18 	php-fpm[43836]: /rc.start_packages: Restarting/Starting all packages.
                                  Aug 31 18:28:17 	check_reload_status: Starting packages
                                  Aug 31 18:28:17 	php-fpm[75108]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                                  Aug 31 18:28:15 	php-fpm[75108]: /rc.newwanip: Creating rrd update script
                                  Aug 31 18:28:15 	php-fpm[75108]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                                  Aug 31 18:28:14 	php-fpm[75108]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                                  Aug 31 18:28:13 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                                  Aug 31 18:28:13 	kernel: ath0_wlan0: link state changed to DOWN
                                  Aug 31 18:28:12 	kernel: fxp1: promiscuous mode enabled
                                  Aug 31 18:28:12 	php-fpm[83027]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                                  Aug 31 18:28:11 	check_reload_status: Syncing firewall
                                  Aug 31 18:28:11 	kernel: fxp1: promiscuous mode disabled
                                  Aug 31 18:28:11 	php-fpm[83027]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                                  Aug 31 18:28:11 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:28:11 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:28:11 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:28:11 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:28:11 	php-fpm[83027]: /rc.start_packages: Restarting/Starting all packages.
                                  Aug 31 18:28:10 	check_reload_status: Starting packages
                                  Aug 31 18:28:10 	php-fpm[43836]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                                  Aug 31 18:28:08 	php-fpm[75108]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                  Aug 31 18:28:08 	php-fpm[43836]: /rc.newwanip: Creating rrd update script
                                  Aug 31 18:28:08 	php-fpm[43836]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                                  Aug 31 18:28:07 	php-fpm[75108]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                  Aug 31 18:28:07 	php-fpm[75108]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                  Aug 31 18:28:07 	php-fpm[75108]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                  Aug 31 18:28:07 	php-fpm[43836]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                                  Aug 31 18:28:06 	check_reload_status: rc.newwanip starting ath0_wlan0
                                  Aug 31 18:28:06 	php-fpm[75108]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                                  Aug 31 18:28:05 	kernel: ath0_wlan0: link state changed to UP
                                  Aug 31 18:28:05 	check_reload_status: Linkup starting ath0_wlan0
                                  Aug 31 18:28:02 	php-fpm[43836]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                  Aug 31 18:28:01 	kernel: ath0_wlan0: link state changed to DOWN
                                  Aug 31 18:28:00 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                                  Aug 31 18:28:00 	php-fpm[43836]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                  Aug 31 18:28:00 	php-fpm[43836]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                  Aug 31 18:28:00 	php-fpm[43836]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                  Aug 31 18:27:59 	check_reload_status: rc.newwanip starting ath0_wlan0
                                  Aug 31 18:27:59 	php-fpm[43836]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                                  Aug 31 18:27:58 	kernel: fxp1: promiscuous mode enabled
                                  Aug 31 18:27:58 	php-fpm[83027]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                                  Aug 31 18:27:58 	kernel: ath0_wlan0: link state changed to UP
                                  Aug 31 18:27:58 	kernel: ath0_wlan0: link state changed to DOWN
                                  Aug 31 18:27:58 	check_reload_status: Linkup starting ath0_wlan0
                                  Aug 31 18:27:57 	kernel: fxp1: promiscuous mode disabled
                                  Aug 31 18:27:57 	php-fpm[83027]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                                  Aug 31 18:27:57 	check_reload_status: Syncing firewall
                                  Aug 31 18:27:57 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:27:57 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:27:57 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:27:57 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:27:57 	php-fpm[83027]: /rc.start_packages: Restarting/Starting all packages.
                                  Aug 31 18:27:56 	check_reload_status: Starting packages
                                  Aug 31 18:27:56 	php-fpm[75108]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                                  Aug 31 18:27:54 	php-fpm[75108]: /rc.newwanip: Creating rrd update script
                                  Aug 31 18:27:54 	php-fpm[75108]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                                  Aug 31 18:27:53 	php-fpm[75108]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                                  Aug 31 18:27:49 	php-fpm[75108]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                  Aug 31 18:27:47 	php-fpm[75108]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                  Aug 31 18:27:47 	php-fpm[75108]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                  Aug 31 18:27:47 	php-fpm[75108]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                  Aug 31 18:27:46 	check_reload_status: rc.newwanip starting ath0_wlan0
                                  Aug 31 18:27:46 	php-fpm[75108]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                                  Aug 31 18:27:45 	kernel: ath0_wlan0: link state changed to UP
                                  Aug 31 18:27:45 	check_reload_status: Linkup starting ath0_wlan0
                                  Aug 31 18:27:32 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                                  Aug 31 18:27:31 	kernel: ath0_wlan0: link state changed to DOWN
                                  Aug 31 18:27:30 	kernel: fxp1: promiscuous mode enabled
                                  Aug 31 18:27:30 	php-fpm[43836]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                                  Aug 31 18:27:30 	check_reload_status: Syncing firewall
                                  Aug 31 18:27:30 	php-fpm[43836]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                                  Aug 31 18:27:30 	kernel: fxp1: promiscuous mode disabled
                                  Aug 31 18:27:29 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:27:29 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:27:29 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:27:29 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:27:29 	php-fpm[43836]: /rc.start_packages: Restarting/Starting all packages.
                                  Aug 31 18:27:28 	check_reload_status: Starting packages
                                  Aug 31 18:27:28 	php-fpm[83027]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                                  Aug 31 18:27:26 	php-fpm[83027]: /rc.newwanip: Creating rrd update script
                                  Aug 31 18:27:26 	php-fpm[83027]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                                  Aug 31 18:27:25 	php-fpm[83027]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                                  Aug 31 18:27:20 	php-fpm[83027]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                  Aug 31 18:27:19 	php-fpm[83027]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                  Aug 31 18:27:19 	php-fpm[83027]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                  Aug 31 18:27:19 	php-fpm[83027]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                  Aug 31 18:27:18 	check_reload_status: rc.newwanip starting ath0_wlan0
                                  Aug 31 18:27:18 	php-fpm[83027]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                                  Aug 31 18:27:17 	kernel: ath0_wlan0: link state changed to UP
                                  Aug 31 18:27:17 	check_reload_status: Linkup starting ath0_wlan0
                                  Aug 31 18:27:11 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                                  Aug 31 18:27:09 	php-fpm[75108]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                                  Aug 31 18:27:09 	kernel: fxp1: promiscuous mode enabled
                                  Aug 31 18:27:08 	check_reload_status: Syncing firewall
                                  Aug 31 18:27:08 	kernel: ath0_wlan0: link state changed to DOWN
                                  Aug 31 18:27:08 	kernel: fxp1: promiscuous mode disabled
                                  Aug 31 18:27:08 	php-fpm[75108]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                                  Aug 31 18:27:08 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:27:08 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:27:08 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:27:08 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:27:08 	php-fpm[75108]: /rc.start_packages: Restarting/Starting all packages.
                                  Aug 31 18:27:06 	check_reload_status: Starting packages
                                  Aug 31 18:27:06 	php-fpm[43836]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                                  Aug 31 18:27:04 	php-fpm[43836]: /rc.newwanip: Creating rrd update script
                                  Aug 31 18:27:04 	php-fpm[43836]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                                  Aug 31 18:27:03 	php-fpm[43836]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                                  Aug 31 18:26:57 	php-fpm[43836]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                  Aug 31 18:26:54 	php-fpm[43836]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                  Aug 31 18:26:54 	php-fpm[43836]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                  Aug 31 18:26:54 	php-fpm[43836]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                  Aug 31 18:26:53 	check_reload_status: rc.newwanip starting ath0_wlan0
                                  Aug 31 18:26:53 	php-fpm[43836]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                                  Aug 31 18:26:52 	kernel: ath0_wlan0: link state changed to UP
                                  Aug 31 18:26:52 	kernel: ath0_wlan0: link state changed to DOWN
                                  Aug 31 18:26:52 	check_reload_status: Linkup starting ath0_wlan0
                                  Aug 31 18:26:51 	kernel: fxp1: promiscuous mode enabled
                                  Aug 31 18:26:50 	php-fpm[83027]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'dbus not running? (check /var/run/dbus/dbus.pid).'
                                  Aug 31 18:26:50 	php-fpm[83027]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                                  Aug 31 18:26:50 	kernel: fxp1: promiscuous mode disabled
                                  Aug 31 18:26:50 	check_reload_status: Syncing firewall
                                  Aug 31 18:26:50 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:26:50 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:26:50 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:26:50 	php-fpm[83027]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:26:50 	php-fpm[83027]: /rc.start_packages: Restarting/Starting all packages.
                                  Aug 31 18:26:49 	check_reload_status: Starting packages
                                  Aug 31 18:26:49 	php-fpm[75108]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                                  Aug 31 18:26:47 	php-fpm[43836]: /rc.filter_configure_sync: Could not find IPv6 gateway for interface (wan).
                                  Aug 31 18:26:47 	php-fpm[75108]: /rc.newwanip: Creating rrd update script
                                  Aug 31 18:26:47 	php-fpm[75108]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                                  Aug 31 18:26:46 	php-fpm[75108]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                                  Aug 31 18:26:44 	check_reload_status: Reloading filter
                                  Aug 31 18:26:42 	php-fpm[83027]: /pkg_edit.php: Reloading Squid for configuration sync
                                  Aug 31 18:26:41 	php-fpm[75108]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                  Aug 31 18:26:37 	php-fpm[43836]: /rc.filter_configure_sync: Could not find IPv6 gateway for interface (wan).
                                  Aug 31 18:26:35 	php-fpm[75108]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                  Aug 31 18:26:35 	php-fpm[75108]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                  Aug 31 18:26:35 	php-fpm[75108]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                  Aug 31 18:26:33 	php-fpm[75108]: /rc.filter_configure_sync: Could not find IPv6 gateway for interface (wan).
                                  Aug 31 18:26:31 	check_reload_status: rc.newwanip starting ath0_wlan0
                                  Aug 31 18:26:31 	php-fpm[75108]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                                  Aug 31 18:26:31 	php-fpm[83027]: /pkg_edit.php: [Squid] - Squid_resync function call pr:1 bp: rpc:no
                                  Aug 31 18:26:31 	check_reload_status: Reloading filter
                                  Aug 31 18:26:31 	check_reload_status: Syncing firewall
                                  Aug 31 18:26:30 	check_reload_status: Reloading filter
                                  Aug 31 18:26:30 	kernel: ath0_wlan0: link state changed to UP
                                  Aug 31 18:26:30 	check_reload_status: Linkup starting ath0_wlan0
                                  Aug 31 18:26:29 	php-fpm[83027]: /pkg_edit.php: Reloading Squid for configuration sync
                                  Aug 31 18:26:27 	php-fpm[83027]: /pkg_edit.php: [Squid] - Squid_resync function call pr:1 bp: rpc:no
                                  Aug 31 18:26:18 	kernel: ath0_wlan0: link state changed to DOWN
                                  Aug 31 18:26:11 	php-fpm[83027]: /rc.start_packages: Skipping STARTing packages process because previous/another instance is already running
                                  Aug 31 18:26:10 	check_reload_status: Starting packages
                                  Aug 31 18:26:10 	php-fpm[43836]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                                  Aug 31 18:26:08 	php-fpm[43836]: /rc.newwanip: Creating rrd update script
                                  Aug 31 18:26:08 	php-fpm[43836]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                                  Aug 31 18:26:07 	php-fpm[43836]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                                  Aug 31 18:26:03 	php-fpm[43836]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                  Aug 31 18:26:01 	php-fpm[43836]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                  Aug 31 18:26:01 	php-fpm[43836]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                  Aug 31 18:26:01 	php-fpm[43836]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                  Aug 31 18:26:00 	check_reload_status: rc.newwanip starting ath0_wlan0
                                  Aug 31 18:26:00 	php-fpm[43836]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                                  Aug 31 18:25:59 	kernel: ath0_wlan0: link state changed to UP
                                  Aug 31 18:25:59 	check_reload_status: Linkup starting ath0_wlan0
                                  Aug 31 18:25:37 	kernel: ath0_wlan0: link state changed to DOWN
                                  Aug 31 18:25:26 	php-fpm[75108]: /rc.start_packages: Skipping STARTing packages process because previous/another instance is already running
                                  Aug 31 18:25:24 	check_reload_status: Starting packages
                                  Aug 31 18:25:24 	php-fpm[83027]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                                  Aug 31 18:25:22 	php-fpm[83027]: /rc.newwanip: Creating rrd update script
                                  Aug 31 18:25:22 	php-fpm[83027]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                                  Aug 31 18:25:21 	php-fpm[83027]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                                  Aug 31 18:25:18 	php-fpm[43836]: /rc.start_packages: Skipping STARTing packages process because previous/another instance is already running
                                  Aug 31 18:25:17 	check_reload_status: Starting packages
                                  Aug 31 18:25:17 	php-fpm[43836]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                                  Aug 31 18:25:15 	php-fpm[83027]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                  Aug 31 18:25:15 	php-fpm[43836]: /rc.newwanip: Creating rrd update script
                                  Aug 31 18:25:15 	php-fpm[43836]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                                  Aug 31 18:25:13 	php-fpm[43836]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                                  Aug 31 18:25:12 	php-fpm[83027]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                  Aug 31 18:25:12 	php-fpm[83027]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                  Aug 31 18:25:12 	php-fpm[83027]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                  Aug 31 18:25:11 	check_reload_status: rc.newwanip starting ath0_wlan0
                                  Aug 31 18:25:11 	php-fpm[75108]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                                  Aug 31 18:25:10 	check_reload_status: Linkup starting ath0_wlan0
                                  Aug 31 18:25:09 	kernel: ath0_wlan0: link state changed to UP
                                  Aug 31 18:25:07 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                                  Aug 31 18:25:04 	php-fpm[75108]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                                  Aug 31 18:25:04 	kernel: fxp1: promiscuous mode enabled
                                  Aug 31 18:25:04 	php-fpm[43836]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                  Aug 31 18:25:01 	php-fpm[75108]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                                  Aug 31 18:25:01 	kernel: fxp1: promiscuous mode disabled
                                  Aug 31 18:24:59 	check_reload_status: Syncing firewall
                                  Aug 31 18:24:58 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:24:58 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:24:58 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:24:58 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:24:58 	php-fpm[75108]: /rc.start_packages: Restarting/Starting all packages.
                                  Aug 31 18:24:57 	kernel: ath0_wlan0: link state changed to DOWN
                                  Aug 31 18:24:57 	php-fpm[43836]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                  Aug 31 18:24:57 	check_reload_status: Starting packages
                                  Aug 31 18:24:57 	php-fpm[75108]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                                  Aug 31 18:24:57 	php-fpm[43836]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                  Aug 31 18:24:57 	php-fpm[43836]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                  Aug 31 18:24:56 	php-fpm[83027]: /index.php: Successful login for user 'admin' from: 192.168.0.2
                                  Aug 31 18:24:56 	php-fpm[83027]: /index.php: Successful login for user 'admin' from: 192.168.0.2
                                  Aug 31 18:24:55 	check_reload_status: rc.newwanip starting ath0_wlan0
                                  Aug 31 18:24:55 	php-fpm[83027]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                                  Aug 31 18:24:54 	kernel: ath0_wlan0: link state changed to UP
                                  Aug 31 18:24:54 	check_reload_status: Linkup starting ath0_wlan0
                                  Aug 31 18:24:54 	php-fpm[75108]: /rc.newwanip: Creating rrd update script
                                  Aug 31 18:24:54 	php-fpm[75108]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                                  Aug 31 18:24:53 	php-fpm[75108]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                                  Aug 31 18:24:53 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                                  Aug 31 18:24:51 	php-fpm[43836]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus. Waiting for PIDS: 93589.'
                                  Aug 31 18:24:50 	kernel: fxp1: promiscuous mode enabled
                                  Aug 31 18:24:50 	kernel: fxp1: promiscuous mode disabled
                                  Aug 31 18:24:50 	php-fpm[43836]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                                  Aug 31 18:24:50 	check_reload_status: Syncing firewall
                                  Aug 31 18:24:49 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:24:49 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:24:49 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:24:49 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:24:49 	php-fpm[43836]: /rc.start_packages: Restarting/Starting all packages.
                                  Aug 31 18:24:48 	check_reload_status: Starting packages
                                  Aug 31 18:24:48 	php-fpm[83027]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                                  Aug 31 18:24:47 	php-fpm[75108]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                  Aug 31 18:24:46 	kernel: ath0_wlan0: link state changed to DOWN
                                  Aug 31 18:24:46 	php-fpm[83027]: /rc.newwanip: Creating rrd update script
                                  Aug 31 18:24:46 	php-fpm[83027]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                                  Aug 31 18:24:45 	php-fpm[75108]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                  Aug 31 18:24:45 	php-fpm[75108]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                  Aug 31 18:24:45 	php-fpm[75108]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                  Aug 31 18:24:45 	php-fpm[83027]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                                  Aug 31 18:24:44 	check_reload_status: rc.newwanip starting ath0_wlan0
                                  Aug 31 18:24:44 	php-fpm[75108]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                                  Aug 31 18:24:43 	kernel: ath0_wlan0: link state changed to UP
                                  Aug 31 18:24:43 	kernel: ath0_wlan0: ieee80211_new_state_locked: pending AUTH -> SCAN transition lost
                                  Aug 31 18:24:43 	check_reload_status: Linkup starting ath0_wlan0
                                  Aug 31 18:24:41 	kernel: ath0_wlan0: link state changed to DOWN
                                  Aug 31 18:24:37 	php-fpm[83027]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                  Aug 31 18:24:35 	php-fpm[83027]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                  Aug 31 18:24:35 	php-fpm[83027]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                  Aug 31 18:24:35 	php-fpm[83027]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                  Aug 31 18:24:34 	check_reload_status: rc.newwanip starting ath0_wlan0
                                  Aug 31 18:24:34 	php-fpm[83027]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                                  Aug 31 18:24:33 	check_reload_status: Linkup starting ath0_wlan0
                                  Aug 31 18:24:33 	kernel: ath0_wlan0: link state changed to UP
                                  Aug 31 18:24:33 	kernel: ath0_wlan0: link state changed to DOWN
                                  Aug 31 18:22:36 	root: /usr/pbi/avahi-i386/etc/rc.d/dbus: WARNING: failed to start dbus
                                  Aug 31 18:22:31 	php-fpm[75108]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus. Waiting for PIDS: 16553.'
                                  Aug 31 18:22:31 	kernel: fxp1: promiscuous mode enabled
                                  Aug 31 18:22:30 	php-fpm[75108]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                                  Aug 31 18:22:30 	kernel: fxp1: promiscuous mode disabled
                                  Aug 31 18:22:30 	check_reload_status: Syncing firewall
                                  Aug 31 18:22:30 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:22:30 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:22:30 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:22:29 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:22:29 	php-fpm[75108]: /rc.start_packages: Restarting/Starting all packages.
                                  Aug 31 18:22:28 	check_reload_status: Starting packages
                                  Aug 31 18:22:28 	php-fpm[43836]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                                  Aug 31 18:22:26 	php-fpm[43836]: /rc.newwanip: Creating rrd update script
                                  Aug 31 18:22:26 	php-fpm[43836]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                                  Aug 31 18:22:25 	php-fpm[43836]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                                  Aug 31 18:22:19 	php-fpm[43836]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                  Aug 31 18:22:16 	php-fpm[43836]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                  Aug 31 18:22:16 	php-fpm[43836]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                  Aug 31 18:22:16 	php-fpm[43836]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                  Aug 31 18:22:15 	check_reload_status: rc.newwanip starting ath0_wlan0
                                  Aug 31 18:22:15 	php-fpm[43836]: /rc.linkup: Hotplug event detected for WIFI(opt2) but ignoring since interface is configured with static IP ( )
                                  Aug 31 18:22:14 	kernel: ath0_wlan0: link state changed to UP
                                  Aug 31 18:22:14 	check_reload_status: Linkup starting ath0_wlan0
                                  Aug 31 18:21:47 	php-fpm[75108]: /rc.filter_configure_sync: Could not find IPv6 gateway for interface (wan).
                                  Aug 31 18:21:44 	check_reload_status: Reloading filter
                                  Aug 31 18:21:43 	php-fpm[75108]: /pkg_edit.php: Reloading Squid for configuration sync
                                  Aug 31 18:21:32 	php-fpm[75108]: /pkg_edit.php: [Squid] - Squid_resync function call pr:1 bp: rpc:no
                                  Aug 31 18:21:32 	check_reload_status: Reloading filter
                                  Aug 31 18:21:32 	check_reload_status: Syncing firewall
                                  Aug 31 18:21:31 	php-fpm[75108]: /pkg_edit.php: Reloading Squid for configuration sync
                                  Aug 31 18:20:09 	kernel: ath0_wlan0: link state changed to DOWN
                                  Aug 31 18:19:25 	sshlockout[51174]: sshlockout/webConfigurator v3.0 starting up
                                  Aug 31 18:19:25 	snort[39427]: [1:2008578:6] ET SCAN Sipvicious Scan [Classification: Attempted Information Leak] [Priority: 2] {UDP} 64.22.104.33:5060 -> 5.144.63.69:5060
                                  Aug 31 18:19:25 	snort[39427]: [1:2008578:6] ET SCAN Sipvicious Scan [Classification: Attempted Information Leak] [Priority: 2] {UDP} 64.22.104.33:5060 -> 5.144.63.69:5060
                                  Aug 31 18:18:49 	syslogd: kernel boot file is /boot/kernel/kernel
                                  Aug 31 18:18:49 	syslogd: exiting on signal 15
                                  Aug 31 18:18:49 	check_reload_status: Syncing firewall
                                  Aug 31 18:18:27 	kernel: fxp1: promiscuous mode enabled
                                  Aug 31 18:18:27 	php-fpm[43836]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                                  Aug 31 18:18:27 	check_reload_status: Syncing firewall
                                  Aug 31 18:18:27 	kernel: fxp1: promiscuous mode disabled
                                  Aug 31 18:18:27 	php-fpm[43836]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                                  Aug 31 18:18:27 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:18:27 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:18:27 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:18:27 	php-fpm[43836]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:18:27 	php-fpm[43836]: /rc.start_packages: Restarting/Starting all packages.
                                  Aug 31 18:18:25 	check_reload_status: Starting packages
                                  Aug 31 18:18:25 	php-fpm[83027]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                                  Aug 31 18:18:23 	php-fpm[83027]: /rc.newwanip: Creating rrd update script
                                  Aug 31 18:18:23 	php-fpm[83027]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                                  Aug 31 18:18:22 	php-fpm[83027]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                                  Aug 31 18:18:18 	php-fpm[83027]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                  Aug 31 18:18:17 	php-fpm[83027]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                  Aug 31 18:18:17 	php-fpm[83027]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                  Aug 31 18:18:17 	php-fpm[83027]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                  Aug 31 18:18:16 	check_reload_status: rc.newwanip starting ath0_wlan0
                                  Aug 31 18:18:15 	kernel: ath0_wlan0: link state changed to UP
                                  Aug 31 18:18:15 	check_reload_status: Linkup starting ath0_wlan0
                                  Aug 31 18:18:12 	kernel: pid 40468 (ntpd), uid 0: exited on signal 11 (core dumped)
                                  Aug 31 18:18:04 	kernel: ath0_wlan0: link state changed to DOWN
                                  Aug 31 18:17:43 	php-fpm[75108]: /rc.start_packages: The command '/usr/local/etc/rc.d/avahi-daemon.sh stop' returned exit code '1', the output was 'Stopping dbus.'
                                  Aug 31 18:17:43 	php-fpm[75108]: /rc.start_packages: [Squid] - Squid_resync function call pr:1 bp:1 rpc:no
                                  Aug 31 18:17:43 	kernel: fxp1: promiscuous mode enabled
                                  Aug 31 18:17:43 	kernel: fxp1: promiscuous mode disabled
                                  Aug 31 18:17:43 	check_reload_status: Syncing firewall
                                  Aug 31 18:17:43 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:17:43 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:17:42 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:17:42 	php-fpm[75108]: /rc.start_packages: [pfBlockerNG] Sync terminated during boot process.
                                  Aug 31 18:17:42 	php-fpm[75108]: /rc.start_packages: Restarting/Starting all packages.
                                  Aug 31 18:17:41 	check_reload_status: Starting packages
                                  Aug 31 18:17:41 	php-fpm[75108]: /rc.newwanip: pfSense package system has detected an IP change or dynamic WAN reconnection - 0.0.0.0 -> - Restarting packages.
                                  Aug 31 18:17:39 	php-fpm[75108]: /rc.newwanip: Creating rrd update script
                                  Aug 31 18:17:39 	php-fpm[75108]: /rc.newwanip: Resyncing OpenVPN instances for interface WIFI.
                                  Aug 31 18:17:38 	php-fpm[75108]: /rc.newwanip: The command '/usr/local/sbin/dhcpd -user dhcpd -group _dhcp -chroot /var/dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid fxp1' returned exit code '1', the output was 'Internet Systems Consortium DHCP Server 4.2.8 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 deleted host decls to leases file. Wrote 0 new dynamic host decls to leases file. Wrote 2 leases to leases file. Listening on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Sending on BPF/fxp1/00:02:b3:0b:ab:2e/192.168.0.0/24 Can't bind to dhcp address: Address already in use Please make sure there is no other dhcp server running and that there's no entry for dhcp or bootp in /etc/inetd.conf. Also make sure you are not running HP JetAdmin software, which includes a bootp server. If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you d
                                  Aug 31 18:17:34 	php-fpm[75108]: /rc.newwanip: Could not find IPv6 gateway for interface (wan).
                                  Aug 31 18:17:33 	php-fpm[75108]: /rc.newwanip: IP has changed, killing states on former IP 0.0.0.0.
                                  Aug 31 18:17:33 	php-fpm[75108]: /rc.newwanip: rc.newwanip: on (IP address: ) (interface: WIFI[opt2]) (real interface: ath0_wlan0).
                                  Aug 31 18:17:33 	php-fpm[75108]: /rc.newwanip: rc.newwanip: Info: starting on ath0_wlan0.
                                  Aug 31 18:17:32 	check_reload_status: rc.newwanip starting ath0_wlan0
                                  
                                  
                                  1 Reply Last reply Reply Quote 0
                                  • KOMK
                                    KOM
                                    last edited by

                                    Just a note to say that you can directly attach files here without having to wrap them in Code tags…

                                    Nothing in your System log.  To look at cache.log and access.log, you can use the cat command or nano or vi.

                                    1 Reply Last reply Reply Quote 0
                                    • F
                                      firefox
                                      last edited by

                                      To look at cache.log and access.log, you can use the cat command or nano or vi.

                                      how do i do that ?
                                      after i ssh to the Machine
                                      i select 8
                                      then what i need to Write ?

                                      1 Reply Last reply Reply Quote 0
                                      • KOMK
                                        KOM
                                        last edited by

                                        then what i need to Write ?

                                        cat /var/squid/logs/access.log

                                        or

                                        nano /var/squid/logs/cache.log

                                        or

                                        vi /var/squid/logs/access.log

                                        or

                                        more /var/squid/logs/cache.log

                                        …

                                        1 Reply Last reply Reply Quote 0
                                        • A
                                          aGeekhere
                                          last edited by

                                          did your try deleting the squid cache?

                                          In ssh option 8

                                          cd /var/squid/cache
                                          rm -rf *
                                          squid -z

                                          Never Fear, A Geek is Here!

                                          1 Reply Last reply Reply Quote 0
                                          • F
                                            firefox
                                            last edited by

                                            did your try deleting the squid cache?

                                            cd /var/squid/cache
                                            rm -rf *
                                            squid -z
                                            

                                            yes i try
                                            i know this command

                                            
                                            cat /var/squid/logs/cache.log
                                            

                                            give me this

                                            2015/09/01 08:00:02| pinger: Initialising ICMP pinger ...
                                            2015/09/01 08:00:02|  icmp_sock: (1) Operation not permitted
                                            2015/09/01 08:00:02| pinger: Unable to start ICMP pinger.
                                            2015/09/01 08:00:02|  icmp_sock: (1) Operation not permitted
                                            2015/09/01 08:00:02| pinger: Unable to start ICMPv6 pinger.
                                            2015/09/01 08:00:02| FATAL: pinger: Unable to open any ICMP sockets.
                                            2015/09/01 08:03:23 kid1| WARNING: Creating /var/squid/cache/00/04
                                            2015/09/01 08:07:23 kid1| WARNING: Creating /var/squid/cache/00/05
                                            
                                            cat /var/squid/logs/access.log
                                            
                                            

                                            didnt give anything

                                            1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post
                                            Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.