summaryrefslogtreecommitdiffstats
path: root/usr
Commit message (Collapse)AuthorAgeFilesLines
* Welcome 2015Renato Botelho2014-12-31291-297/+297
|
* Merge pull request #1412 from phil-davis/patch-2Chris Buechler2014-12-301-1/+1
|\
| * IPsec Widget allow for old settings that have no iketypePhil Davis2014-12-301-1/+1
| | | | | | | | | | as mentioned in https://forum.pfsense.org/index.php?topic=84527.msg471919#msg471919 This change makes it work like similar if tests in /usr/local/wwwvpn_ipsec.php, and code in /etc/inc/vpn.inc that effectively defaults to ikev1 when iketype is not specified. This should make the code here be executed and make $ikeid get the correct value to be used in later code.
* | Allow for old settings that have no iketypePhil Davis2014-12-301-1/+1
|/ | | | | This bit of code looks like it could do with the same test as https://github.com/pfsense/pfsense/pull/1412 This is executed when the "Connect" button is pressed from Status->IPsec Somebody with these problematic old IPsec entries could test this - with current code I suspect that disconnect followed by connect - it will not connect. With this change it will (might?) connect again.
* Captive portal spellingPhil Davis2014-12-301-2/+2
|
* Merge pull request #1408 from ExolonDX/masterRenato Botelho2014-12-296-95/+0
|\
| * Backout pull request #1391Colin Fleming2014-12-296-95/+0
| | | | | | | | | | | | https://forum.pfsense.org/index.php?topic=85944.0 Backout pull request #13191
* | Fix unbound shortcut linksPhil Davis2014-12-289-15/+21
|/ | | | | | | | | | | | Fixes redmine #4151 1) Make the naming in shortcuts.inc more clear - forwarder=dnsmasq resolver=unbound 2) Make the value of $shortcuts_section correct in each dnsmasq and unbound php code 3) Make diag_logs_resolver.php smarter, so if dnsmasq is enabled, then show shortcuts for dnsmasq, otherwise show shortcuts for unbound. 4) Fix some references to forwarder in unbound code - should be resolver.
* clarify message here after customer feedback, it wasn't meant to imply "only ↵Chris Buechler2014-12-262-2/+2
| | | | a reboot will re-enable" but that's how some people have read it.
* Move this check before full sync to disable dnsmasq/unbound in the first ↵Renato Botelho2014-12-261-12/+12
| | | | time it's sync'd
* Add dnsmasq and unbound config sections to full sync, it fixes #4076 that is ↵Renato Botelho2014-12-261-1/+1
| | | | caused because boolean config fields are not disabled on secondary
* Display tunnel description on IPsec widgetPhil Davis2014-12-261-45/+49
| | | | | | | | There was not even code to attempt to display the description. Also, when I first created a phase1 and there were no phase2 yet, the widget spat out the warning for the line: foreach ($config['ipsec']['phase2'] as $ph2ent){ ... So I enclosed that in a block: if (isset($config['ipsec']['phase2'])) { ... } Tabbing that block in makes the diff look big when there really is little change - a diff ignoring spacing will look much nicer!
* Correct even other areas of CP using pfSense_ipfw_getTablestats function.Ermal LUÇI2014-12-243-3/+3
|
* Fix displaying description for IKEv1 connected tunnelsErmal LUÇI2014-12-241-3/+4
|
* Oops remove variable with same name unused!Ermal LUÇI2014-12-241-1/+1
|
* Add checks for ghost phase2 and no need to check for number of phase2 hereErmal LUÇI2014-12-241-3/+3
|
* Correct skipping of disabled tunnelsErmal LUÇI2014-12-241-1/+1
|
* Correct status counter of inactive tunnelsErmal LUÇI2014-12-241-0/+8
|
* Remove option that has now been merged into infra-host-ttl.Warren Baker2014-12-241-19/+1
|
* Oops do not override ipsec status array!Ermal LUÇI2014-12-231-2/+2
|
* Reboot not required for password protect console menuPhil Davis2014-12-231-2/+0
| | | On my systems I can toggle and save "Password protect the console menu" back and forth and the console switches back and forth from the menu to a login prompt in real time. IMHO a reboot is no longer needed. Remove this note might save some people unnecessary reboot time.
* Merge pull request #1393 from phil-davis/patch-12Chris Buechler2014-12-222-5/+15
|\
| * Display better message when booting and awaiting package reinstallPhil Davis2014-12-181-5/+4
| |
| * Display better message when booting and awaiting package reinstallPhil Davis2014-12-181-3/+8
| |
| * Display better message when booting and awaiting package reinstallPhil Davis2014-12-181-2/+8
| |
* | Merge pull request #1397 from phil-davis/patch-15Chris Buechler2014-12-223-35/+42
|\ \
| * | Put line break only if IPv4 address existsPhil Davis2014-12-201-5/+9
| | | | | | | | | This makes a line for the IPv4 address if it is there. If the IPv4 address goes away, the whole line will disappear, leaving just the IPv6 address without an empty line above it.
| * | Interfaces widget remove blank line if no IPv4 addressPhil Davis2014-12-201-2/+1
| | | | | | | | | | | | If the interface had an IPv6 address but no IPv4 address, there was a blank line where the IPv4 address would have been. There is no need for that, and one day IPv4 will be old legacy and systems will routinely have no IPv4 addresses at all - they will all be IPv6. Might as well make that look ordinary on the display now. The br goes in the div so we can put it in and out from the AJAX also.
| * | Set Interfaces widget IPv6 addressPhil Davis2014-12-201-2/+4
| | | | | | | | | Now that get_interfacestatus() is returning us the IPv6 address, and interfaces.widget.php has a div to put it in, actually update the IPv6 address on the widget.
| * | Send IPv4 and IPv6 address in get_interfacestatusPhil Davis2014-12-201-1/+4
| | | | | | | | | | | | And make them strong (bold), which is how they are displayed originally by interfaces.widget.php This allows the AJAX that manipulates the div's in interfaces.widget.php to get the data, so it can make it update.
| * | Interfaces widget create all divPhil Davis2014-12-201-25/+24
| | | | | | | | | All div for the various things need to be created here, so that later AJAX can switch the necessary things on/off and write a new IPv4 or IPv6 address into the div when an interface acquires an address.
* | | Merge pull request #1400 from phil-davis/patch-17Chris Buechler2014-12-223-20/+91
|\ \ \
| * | | Standardise dynamic firewall log viewPhil Davis2014-12-211-9/+44
| | | | | | | | | | | | | | | | | | | | | | | | to be like Firewall Log widget: 1) Display IPv6 address and port in [a:b::c]:123 format 2) Fix same issue with rows gradually disappearing each update, or when in reverse order, update lines not being put in the right place. 3) Update the processing of function format_log_line(row) to reflect the changed list of data items returned by handle_ajax() in filter_log.inc
| * | | Handle firewall log widget display formatsPhil Davis2014-12-211-10/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the same way for the initial display and for updated rows done by Java Script. Now we receive the source IP and port, destination IP and port, all in separate fields so they can be put together in whatever combination for display. IPv6 displayed addresses are shown inside "[ ]" so that any following port has the standard syntax like "[a:b::c:d]:123" - this makes it obvious that the last numbers are a port number, and not part of the IPv6 address. The "title" has IP+Port - that is displayed when hovering over the box in general. The href to diag_dns.php has hover text "Reverse Resolve with DNS" and the "?host=" sends just the IP address (without IPv6 square brackets). The text displayed in the link is the IP address (with square brackets if an IPv6 address). For the destination column, if there is a destinaion port, it is displayed in ordinary text ":port" after the IP address. The blank not-displayed row at the end of the table is removed - this fixes the problem with counting the rows of the table where rows would disappear at each update.
| * | | Lastsawtime has moved further alongPhil Davis2014-12-211-1/+1
| |/ / | | | | | | srcport, dstport and version are now explicitly passed as fields here, so lastsawtime is 3 fields further out.
* | | Add missing $ as spotted by Kill Bill, ticket #4132Renato Botelho2014-12-221-2/+2
| | |
* | | Correct display of tunnel status on ikev1 with multiple phase2Ermal LUÇI2014-12-221-1/+5
| | |
* | | Correct ipsec status page to make connect button workErmal LUÇI2014-12-221-2/+14
| | |
* | | Correct dashboard with new ipsec generationErmal LUÇI2014-12-221-24/+43
| | |
* | | Fix string, we want to print variable name here and not its value. Fixes #4132Renato Botelho2014-12-221-2/+2
|/ /
* | Use correct port for viewing portal page contents. Ticket #4125Chris Buechler2014-12-191-2/+2
| |
* | Fix help for UPnP/NAT-PMPjim-p2014-12-191-2/+2
| |
* | Merge pull request #1391 from ExolonDX/masterRenato Botelho2014-12-186-0/+101
|\ \ | |/ |/|
| * Remove "link", "vlink" and "alink" from BODY tagColin Fleming2014-12-166-0/+101
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a positional change to remove "link", "vlink" and "alink" from the BODY tag, the following themes do not have Anchor tags defined in CSS, so they use the colours defined in the BODY tag, which is blue (hex: #0000CC). _corporate code-red metallic nervecenter pfsense pfsense-dropdown Update "all.css" in the above themes with Anchor tags defined, so that the colour definition can be removed from the BODY tag.
* | Disable dhcp server when interface is disabled. Ticket #4119Renato Botelho2014-12-171-1/+5
| |
* | Do not check disabled interfaces, ticket #4119Renato Botelho2014-12-172-4/+10
| |
* | Encode space to avoid rejecting users with spaces in usernameErmal LUÇI2014-12-171-1/+1
| |
* | Use updated URLs for Limiters and Layer 7 help.jim-p2014-12-161-3/+3
| |
* | Remove some old comments and unnecessary cruft.jim-p2014-12-161-69/+0
| |
* | Pick up some more new pages for 2.2 that need help links.jim-p2014-12-161-0/+7
| |
OpenPOWER on IntegriCloud