Commit Graph

32495 Commits

Author SHA1 Message Date
Renato Botelho
0417767d05 Merge pull request #3129 from NewEraCracker/patch-dns 2016-09-13 09:37:27 -03:00
Renato Botelho
03505b3aba Merge pull request #3134 from stilez/patch-36 2016-09-13 09:31:23 -03:00
Renato Botelho
9a20fb44b8 Merge pull request #3133 from NOYB/Check_IP_Services_-_Info_Box 2016-09-13 09:26:32 -03:00
NOYB
a25c797a44 Remove empty concatenation. 2016-09-12 11:31:12 -07:00
stilez
58325912c8 Simplify another loop 2016-09-11 03:20:38 +01:00
stilez
e23a417300 simplify code a bit more 2016-09-11 03:13:20 +01:00
stilez
a8b0fc78ec error messages again 2016-09-10 08:28:56 +01:00
stilez
b9004e46d6 gateway error messages - standardise text and clarify "both" 2016-09-10 08:11:10 +01:00
stilez
cff60fef4f More redundant logic 2016-09-10 08:01:18 +01:00
stilez
667fd2b7e2 Redundant comparison
if it's a numeric integer (hence non-empty [0-9]+ ) and the first char isn't "0" then the value will always be >0, so test is redundant
2016-09-10 07:53:52 +01:00
NOYB
6f3ac947b2 Check IP Services - Info Box
Change warning box with dismissal to collapsible info box.
2016-09-09 18:00:16 -07:00
jim-p
d2013d1257 Fix up/catch up remote syslog areas. Fixes #6780 2016-09-09 14:52:23 -04:00
jim-p
6e5f31c7b1 More pptp bits 2016-09-09 14:13:05 -04:00
jim-p
8acd133120 Remove some more dangling PPTP bits. 2016-09-09 11:59:01 -04:00
jim-p
1d6f957fff Fix description of the VPN remote log setting 2016-09-08 16:46:21 -04:00
NewEraCracker
df7f65a318 Fix diag_dns regressions
After testing diag_dns behaviour some regressions have been noticed.

1) Looking up ipv6.google.com (it only has AAAA records) doesn't work
   - gethostbyname() only supports v4, ipv6.google.com only has v6
   - this bug was recently and inadvertently introduced
2) Results table will always show even when domain is not resolved
   - since refactoring ages ago, $resolved is an array, bad idea to replace with a string, this will cause issues
   - this piece of code was 'dead' until the recent commit has 'enabled' it again, removing it as not needed
3) Parameters for display_host_results (see: fe74228f2a for its introduction) weren't correctly updated
   - mostly a dead function, doubt this is used for anything, keeping it just in case.

This commit fixes all aforementioned issues.
2016-09-08 15:49:57 +01:00
Renato Botelho
cb437d3905 Move copyright from ESF to Netgate 2016-09-08 07:16:26 -03:00
Renato Botelho
39aa6d8119 Revert "Remove unused file browser.php"
This reverts commit 8dee84f4ce.
2016-09-08 07:15:46 -03:00
Renato Botelho
81299b5c4e Move copyright from ESF to Netgate 2016-09-06 16:23:51 -03:00
Renato Botelho
8dee84f4ce Remove unused file browser.php 2016-09-06 16:19:00 -03:00
Renato Botelho
1b9fa643d2 Merge pull request #3119 from jlduran/fix-font-jquery-ui-widgets 2016-09-06 13:13:11 -03:00
Renato Botelho
d5b628cbbc Merge pull request #3120 from moisseev/compact-red 2016-09-06 13:12:17 -03:00
jim-p
6ffb27fce6 Remove some obsolete code from globals.inc 2016-09-06 12:07:00 -04:00
jim-p
caec0e9722 Fix handling of backup config count. Fixes #6771 2016-09-06 11:40:26 -04:00
Stephen Beaver
1c1f08f92e Obscured password field in system_authservers.php bind section
Fixed #6759
2016-09-02 16:12:57 -04:00
Renato Botelho
455be09a62 Merge pull request #3102 from NewEraCracker/patch-dhcp6 2016-09-02 16:18:18 -03:00
NewEraCracker
f2c9194cdd Force changes in routing to be detected by the system
When dhcp6c without RA is enabled, dhcp6c isn't killed and respawned, this causes the system not being able to pick up the routing changes. In this case, running the configuration script which fires rc.newwanipv6 solves the problem.
2016-09-02 19:21:03 +01:00
marjohn56
c4ddb03acb DHCP6 Before RA. Additions and ammendments
Replaced posix_kill() in kill_dhcp6client_process() with mwexec("kill -9 $pid"), this is because the posix_kill call was not reliably killing the dhcp6c process, kill -9 works every time.

Changes to the rtsold script creation. The script lines starting dhcp6c should not have be written to the script when dhcpwithoutra is true.

Style corrections, I spend more time doing these than changing code!
2016-09-02 19:21:01 +01:00
Renato Botelho
b85d0e0397 Merge pull request #3122 from NewEraCracker/patch-11 2016-09-02 10:31:33 -03:00
Renato Botelho
59900c5c3d Merge pull request #3105 from NewEraCracker/patch-8 2016-09-02 10:30:04 -03:00
Renato Botelho
e477e23b82 Merge pull request #3101 from NewEraCracker/patch-5 2016-09-02 10:28:37 -03:00
Renato Botelho
9f0679efb9 Merge pull request #3103 from NewEraCracker/patch-7 2016-09-02 08:54:46 -03:00
Renato Botelho
7829c6d521 Fix diag_dns ipaddr set to use in IP WHOIS and IP Info
- Do not call resolve_host_addresses() when hostname cannot be resolved
  by gethostbyname(). The old check was considering gethostbyname would
  return NULL in this case but it returns a string with the hostname
  passed on parameter
- Since resolve_host_addresses() always return an array, look for the
  first A record to set $ipaddr, which will be used later to link with
  IP WHOIS and IP Info

Based on Pull Request #3100 submitted by @NewEraCracker
2016-09-02 08:47:31 -03:00
Renato Botelho
917e9c73cf Removed unused variable $hostname 2016-09-02 08:43:19 -03:00
Renato Botelho
cf62c4a875 Merge pull request #3127 from PiBa-NL/20160902_pattern 2016-09-02 08:34:39 -03:00
Renato Botelho
53e8071a7e Merge pull request #3128 from PiBa-NL/20160902-outboundnat-aliashints 2016-09-02 08:31:00 -03:00
PiBa-NL
d98e54b215 Outbound nat overview, show alias popup and edit options on source and destination, for both the address and port. 2016-09-02 01:56:39 +02:00
PiBa-NL
8ea3fd0569 Input boxes with setPattern validation should not contain escape characters as they are already properly considered 'lists of characters' even when not escaped. 2016-09-02 00:59:52 +02:00
Renato Botelho
8d50c07c8b Convert L2TP Server code to mpd5 2016-09-01 15:04:18 -03:00
jim-p
2ce5cd33ef Remove references to glxsb as it is not relevant to current supported platforms. Fixes #6755 2016-09-01 11:00:55 -04:00
Renato Botelho
e4191be8e3 Add ng interface to pppoe group on mpd.conf and remove dead code from vpn-linkup script 2016-09-01 10:30:55 -03:00
Renato Botelho
2c0a3677de Convert PPPoE Server code to mpd5 2016-09-01 09:23:16 -03:00
Renato Botelho
de64573456 Ticket #3734: Add function to convert IPv6 address <-> binary
- ip6_to_bin() and bin_to_ip6() are copies obtained from pear-Net_IPv6
  since the version available in the class is protected and we don't
  want to add more patches to thirdy part software. If upstream accept
  to change them to public we can retire them
- bin_to_compressed_ip6 is just a short way to conver binary direct to
  a compressed IPv6 address

Reported at: https://forum.pfsense.org/index.php?topic=117601.0
2016-08-31 08:48:43 -03:00
Renato Botelho
2374503855 Merge pull request #3126 from hamnur/master 2016-08-31 08:10:16 -03:00
hamnur
0a6ab475d8 -resolved syntax error 2016-08-31 11:55:25 +02:00
Renato Botelho
b947efe847 Merge pull request #3106 from NewEraCracker/patch-9 2016-08-29 16:07:41 -03:00
Renato Botelho
3843c34a0b Merge pull request #3107 from NewEraCracker/patch-10 2016-08-29 15:19:13 -03:00
Renato Botelho
067c8f5418 Merge pull request #3112 from phil-davis/patch-1 2016-08-29 15:04:02 -03:00
Renato Botelho
2dfbd10f7e Merge pull request #3110 from phil-davis/patch-2 2016-08-29 15:02:22 -03:00
Renato Botelho
628fc6b68a Merge pull request #3114 from phil-davis/patch-3 2016-08-29 14:56:57 -03:00