summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge pull request #404 from phil-davis/masterJim P2013-02-101-28/+28
|\ \ | | | | | | Do not allow 1:2:3:4:5:6:7:8::9 as an IPv6 address
| * | Do not allow 1:2:3:4:5:6:7:8::9 as an IPv6 addressPhil Davis2013-02-111-28/+28
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | The Net_IPv6 code has a bug - checkIPv6 returns "true" for addresses like: 1::2:3:4:5:6:7:8:9 1:2::3:4:5:6:7:8:9 ... 1:2:3:4:5:6:7::8:9 1:2:3:4:5:6:7:8::9 these also emit the message: Warning: str_repeat(): Second argument has to be greater than or equal to 0 in /etc/inc/IPv6.inc on line 496 It is fixed by making uncompress() always insert at least one ":0:" for any "::" in the address - a "::" always implies at least ":0:". This removes the str_repeat() warning, and means that the uncompressed IPv6 address has >8 numbers in it, so it fails the validity check (as it should). Plus I fixed various text typos. These changes are also being submitted to the Net_IPv6 repository on GitHUb so they will get fixed in newer versions (if pfSense ever ports them across).
* | Merge pull request #403 from bcyrill/patch-20Jim P2013-02-101-5/+6
|\ \ | | | | | | Update usr/local/www/system_crlmanager.php
| * | Update usr/local/www/system_crlmanager.phpbcyrill2013-02-101-5/+6
| | | | | | | | | Cleanup HTML
* | | Merge pull request #402 from bcyrill/patch-19Jim P2013-02-101-5/+6
|\ \ \ | |/ / |/| | Update usr/local/www/system_certmanager.php
| * | Update usr/local/www/system_certmanager.phpbcyrill2013-02-101-5/+6
| | | | | | | | | Cleanup HTML
* | | Merge pull request #400 from bcyrill/patch-16Jim P2013-02-101-8/+10
|\ \ \ | |/ / |/| | Update usr/local/www/system_camanager.php
| * | Update usr/local/www/system_camanager.phpbcyrill2013-02-101-8/+10
| | | | | | | | | Cleanup HTML
* | | Merge pull request #401 from phil-davis/masterWarren Baker2013-02-101-1/+1
|\ \ \ | |/ / |/| | Fix login form username field focus
| * | Fix login form username field focusPhil Davis2013-02-111-1/+1
|/ / | | | | The Username filed was no longer getting focus - just a missing "/" in a critical place.
* | Merge pull request #399 from phil-davis/masterJim P2013-02-101-10/+9
|\ \ | | | | | | Validate IP address explicitly as v4 and v6
| * | Validate interface IP explicitly as v4 or v6Phil Davis2013-02-101-10/+9
|/ / | | | | | | The IP Address fields on the Interfaces Edit page were just using is_ipaddr to validate them. I could put an IPv4 address in as the IPv6 static IP and it took it and saved it, then got my system in a knot! It even adjusted the subnet bits dropdown when I typed a valid IPv4 address format in the IPv6 filed. And IPv6 addresses could be put in IPv4 fields also.
* | Merge pull request #398 from phil-davis/masterJim P2013-02-101-8/+17
|\ \ | | | | | | Display Gateway Widget column headings only once
| * | Display Gateway Widget column headings only oncePhil Davis2013-02-101-8/+17
|/ / | | | | The Gateway Widget format was changed recently to allow display of a long IPv6 address. It has made the widget take a lot more screen space when there are a few gateways. This change saves some space - what do people think?
* | Make sure the directory existsErmal2013-02-101-1/+3
| |
* | Small fixes to make code readble and error log more usefulErmal2013-02-102-12/+4
| |
* | Sprinkle some unsetsErmal2013-02-101-0/+2
| |
* | Correct setting default gatewaysErmal2013-02-101-0/+2
| |
* | Correct function nameErmal2013-02-101-1/+1
| |
* | Merge pull request #397 from N0YB/PowerD_AC_BAT_ModesJim P2013-02-092-1/+11
|\ \ | | | | | | Upgrade code & config default version
| * | Upgrade code & config default versionN0YB2013-02-092-1/+11
| | |
* | | Use mwexec() with signal clearing. Use pid file for killining/tracking ntpdErmal2013-02-091-14/+9
| | |
* | | Merge pull request #396 from N0YB/PowerD_AC_BAT_ModesJim P2013-02-091-1/+2
|\ \ \ | |/ / | | | Update config default with powerd battery mode
| * | Update config default with powerd battery modeN0YB2013-02-091-1/+2
| | |
* | | Teach dhcpd_configure about family optional parameter and use it to properly ↵Ermal2013-02-092-7/+10
| | | | | | | | | | | | setup dhcpv6 on track6 case so that config is properly written
* | | Add some newlines to this one too.jim-p2013-02-091-2/+2
| | |
* | | Unbreak firewall rule interface drop-down selection. Fixes #2805jim-p2013-02-091-3/+3
| | |
* | | Actually do restart radvd and dhcp6d on all track6 interfacesErmal2013-02-091-6/+6
| | |
* | | Use posix_kill hereErmal2013-02-091-1/+1
| | |
* | | Restart dhcp and radvd on changeErmal2013-02-092-29/+33
| | |
* | | Actually for SLAAC type interfaces being tracked the configuration is neededErmal2013-02-091-0/+3
| | |
* | | Revert "Remove track6 dhcp configuration since dhcp6 will do this for us."Ermal2013-02-091-1/+40
| | | | | | | | | | | | This reverts commit 6ebfa0ccfd7db500a4f85d2d45ebd74699a8805f.
* | | Remove track6 dhcp configuration since dhcp6 will do this for us.Ermal2013-02-091-40/+1
| | |
* | | Remove this old codeErmal2013-02-091-1/+0
| | |
* | | Optimize and cleanup routing functionErmal2013-02-091-32/+23
| | |
* | | Correct system_routing_configure to do the right thing and guess the address ↵Ermal2013-02-091-14/+23
| | | | | | | | | | | | family for the routing table correctly. While here cleanup some other code and leave a comment that disabled routing entries probably should not be dealt in here!
* | | Set family here to avoid any ambiguityErmal2013-02-091-0/+1
| | |
* | | Merge pull request #395 from N0YB/PowerD_AC_BAT_ModesJim P2013-02-082-15/+33
|\ \ \ | |/ / | | | System: Advanced: Miscellaneous: PowerD
| * | System: Advanced: Miscellaneous: PowerDN0YB2013-02-082-15/+33
| | | | | | | | | | | | Add the on battery mode option settings.
* | | Merge pull request #394 from bcyrill/patch-15Jim P2013-02-081-12/+13
|\ \ \ | | | | | | | | Update usr/local/www/system_certmanager.php
| * | | Update usr/local/www/system_certmanager.phpbcyrill2013-02-091-12/+13
| | | | | | | | | | | | Add space between option's value and selected attributes. Get rid of some stray closing td tags. That's it for now.
* | | | Merge pull request #393 from bcyrill/patch-14Jim P2013-02-081-4/+4
|\ \ \ \ | |/ / / |/| | | Update usr/local/www/system_camanager.php
| * | | Update usr/local/www/system_camanager.phpbcyrill2013-02-091-4/+4
|/ / / | | | | | | Properly close the anchor tag and fix ampersand.
* | | Merge pull request #392 from bcyrill/patch-13Jim P2013-02-081-1/+1
|\ \ \ | |/ / |/| | Update usr/local/www/system_certmanager.php
| * | Update usr/local/www/system_certmanager.phpbcyrill2013-02-091-1/+1
|/ / | | | | Add $userid check
* | Fix fallback monitor selectionjim-p2013-02-081-1/+1
| |
* | Revert "Require util.inc necessary for sigkillbypid()"Renato Botelho2013-02-071-2/+0
| | | | | | | | This reverts commit 1b7ec6ba16af4559e6e66cc1b378e8701a9df0b6.
* | Correctly set the mtu of the interface during configuration. Since for ↵Ermal2013-02-071-9/+9
| | | | | | | | interfaces that are clonable previously the mtu was set than the interface destroy so the operation was useles. While here correct check for vlan interfaces.
* | Correct mtu for track interfaces as well. Aslo cleanup some codeErmal2013-02-071-11/+15
| |
* | Correct function nameErmal2013-02-071-4/+4
| |
OpenPOWER on IntegriCloud