summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Do not rely on PHP5 features which are not widely used in pfSense.Ermal Luçi2009-12-071-2/+2
|
* Try to prevent empty interfaces.Ermal Luçi2009-12-072-3/+5
|
* Include needed files. Ticket #209.Ermal Luçi2009-12-073-0/+5
|
* Fix missing ).Ermal Luçi2009-12-071-1/+1
|
* Rename unknown.pat to any.pat pattern since that is what it really means. ↵Ermal Luçi2009-12-071-0/+0
| | | | This pattern matches any traffic.
* Make sure that do not set the interface to a empty value, this affects the ↵Seth Mos2009-12-071-1/+4
| | | | ipsec counters.
* Fix typo in Importing SSL certificate message.Seth Mos2009-12-071-2/+2
|
* Remove extra ) which broke the pageSeth Mos2009-12-071-1/+1
|
* Use tabs to push comment outsullrich2009-12-061-1/+1
|
* Do not include grepsullrich2009-12-061-1/+1
|
* Restart parser after changessullrich2009-12-061-0/+3
|
* Add # dynamic entry created by rc.parse-isc-dhcpdsullrich2009-12-061-1/+1
|
* Adding script to parse dhcpd log file and populate /etc/hosts so that we can ↵sullrich2009-12-063-1/+73
| | | | move to a newer dnsmasq. in addition, the current dnsmasq isc parsing is broken so there is not a choice to move either way. Ticket #79
* Move port to correct part of URLsullrich2009-12-061-1/+1
|
* Use interface given in gateways array. No need to find this. Reminded-by: ↵sullrich2009-12-061-9/+3
| | | | Ermal
* Fix RELENG_1_2 gitsyncsullrich2009-12-061-2/+6
|
* Use correct argument for pfctl -b Ticket #8sullrich2009-12-061-3/+14
|
* upgrade sysctls to value default. Ticket #71sullrich2009-12-061-21/+25
|
* Increase bogons font size Resolves #205sullrich2009-12-061-4/+5
|
* Show default valuessullrich2009-12-061-0/+5
|
* Add lookup table for sysctl tunable (sysctl.inc). Make config.xml values ↵sullrich2009-12-063-29/+73
| | | | default to value 'default' Ticket #71
* Remove leading spacesullrich2009-12-061-1/+0
|
* Add listtopic and extra save button.sullrich2009-12-062-9/+27
|
* Clear states for an interface if it is down Ticket #8sullrich2009-12-051-0/+10
|
* Set back to post.sullrich2009-12-051-1/+1
|
* Allow GET calling of diag_ping and diag_traceroute so other areas of the GUI ↵sullrich2009-12-053-15/+19
| | | | can easily link to them. Add links from DNS page for ping and traceroute.
* _REQUEST has data, too. Don't just check _POST only.sullrich2009-12-051-1/+1
|
* Use a br instead of a tr.sullrich2009-12-051-3/+4
|
* Use hostsullrich2009-12-051-1/+1
|
* Remove req from classsullrich2009-12-051-1/+1
|
* Set table size to 170sullrich2009-12-051-1/+1
|
* Do not show resolution tr unless browser is postingsullrich2009-12-051-0/+2
|
* Replace '' with No responsesullrich2009-12-051-1/+3
|
* Query each DNS server and report the resolution time.sullrich2009-12-051-1/+45
|
* Open links in new tab/windowsullrich2009-12-051-2/+2
|
* Add listtopic headersullrich2009-12-051-0/+3
|
* Make td cell class vncell. Add whitespace between save button and tablesullrich2009-12-051-2/+3
|
* Increase colspan to 90sullrich2009-12-051-1/+1
|
* Hide debugging itemsullrich2009-12-051-1/+3
|
* Cleanup after syncsullrich2009-12-051-4/+19
|
* Latest PPP changes from 'BG'. Reformat this royal mess of formatting while ↵sullrich2009-12-053-234/+256
| | | | I am here.
* Add page global variablesullrich2009-12-041-1/+1
|
* Run git cleansullrich2009-12-041-0/+1
|
* No need for duplicate commandsullrich2009-12-041-2/+0
|
* Fix typo in prev. commitjim-p2009-12-041-2/+2
|
* Set firmware_update_text properly for the platformjim-p2009-12-041-1/+3
|
* Prompt for the correct image extension when updating firmware. (.img.gz for ↵jim-p2009-12-041-1/+5
| | | | nano and .tgz for others)
* Adding code-red theme from cheesyboofs via forum. ↵sullrich2009-12-04235-0/+5096
| | | | http://forum.pfsense.org/index.php/topic,14282.0.html
* Adding patch from "G B":sullrich2009-12-042-70/+104
| | | | | | | | | | | | | | | | | First, I update the get_real_interface function so that it returns just the serial port for the ppp device (instead of ppp_<serial_port>) when the ppp link is not up. This makes the function more useful because now you can call the "interface_ppp_configure" function and pass in the the result of "get_real_interface($wan)" for example. I also changed the method that the "get_real_interface" function uses to get the tunnel interface name when the ppp link is up. I found that when my 3G modem was in a low signal area, the ppp link would come up partially, and not receive an IP address. If this occurred the web GUI would report that my WAN interface was "pflog0" because the method of chopping up the "ps aux" and "ifconfig" system calls didn't account for the tunnel being partially up (ppp running, but no connectivity.) The userland ppp program puts two files into /var/run when it is running. One is /var/run/<serial_device>.if which contains the interface name that the serial device is attached to, and the other is /var/run/tunX.pid which is the process id for the ppp instance using "tunX." These two files are more simple and reliable methods of controlling and figuring out what's going on with the ppp link. Second, I added a function to interfaces.inc called "interface_ppp_bring_down" which figures out the pid using the /var/run/tunX.pid file and sends a kill -QUIT signal to the ppp process. Third, I modified interfaces_ppp_configure and interface_ppp_configure functions so that 1. The ppp interface is not brought up automatically when you save the configuration because this presents problems for defining ppp.conf entries for diagnostic purposes. 2. You can call interface_ppp_configure from other functions (like interface_configure($interface)) and not have to write the ppp.conf file to the disk when you just want to bring the link up. Fourth, I added "interface_ppp_configure($realif)" to the function definition of "interface_configure" and "interface_ppp_bring_down" to the function definition of "interface_bring_down". These allow good integration into the existing code for bringing interfaces down and up from the status_interfaces.php page. Finally, I modified the status_interfaces.php file so that you get a button to "connect" and "disconnect" the ppp wan link.
* Make all autocompletes in there case insensitive.Ermal Luçi2009-12-044-8/+8
|
OpenPOWER on IntegriCloud