summaryrefslogtreecommitdiffstats
path: root/usr/local/www/interfaces_assign.php
Commit message (Collapse)AuthorAgeFilesLines
...
* There is no need to clear this anymore.Ermal2010-08-161-2/+0
|
* Fixes #823. Do not reload all interfaces, there is already code to do this ↵Ermal2010-08-161-2/+0
| | | | for changed interfaces.
* Escape prototype dollarsign(Scott Ullrich2010-08-141-1/+1
|
* Remove stray )jim-p2010-08-131-1/+1
|
* Modify various (s)printf format strings to allow translations to change the ↵Erik Fonnesbeck2010-08-111-4/+4
| | | | order of the inserted strings.
* Hide Save button until a drop down onChange event occursScott Ullrich2010-08-111-4/+6
|
* Remove extra quotes that were added around some strings when adding ↵Erik Fonnesbeck2010-08-111-3/+3
| | | | printf+gettext in some areas.
* Fix gettext call added wrongRenato Botelho2010-08-101-1/+1
|
* Checked gettext() implementation on interfaces_assign.phpCarlos Eduardo Ramos2010-07-091-14/+14
|
* Implement gettext() calls on interfaces.php and interfaces_assign.phpgroo2010-06-301-22/+22
|
* Make assignment work with new ptpid and if name structure.gnhb2010-06-091-24/+7
|
* Merge branch 'master' of http://gitweb.pfsense.org/pfsense/mainline into mlpppgnhb2010-06-031-0/+2
|\
| * Add status link to Interfacesjim-p2010-06-021-0/+2
| |
* | Merge branch 'master' of http://gitweb.pfsense.org/pfsense/mainline into mlpppgnhb2010-05-211-1/+1
|\ \ | |/ | | | | | | | | Conflicts: usr/local/www/interfaces.php Not sure why there was a conflict since the last change to this file was May 20.
| * Use the PHP call here instead of a shell exec.jim-p2010-05-191-1/+1
| |
* | Fixing bugs and ommissions.gnhb2010-05-131-3/+4
| |
* | Merge branch 'master' of http://gitweb.pfsense.org/pfsense/mainline into mlpppgnhb2010-05-121-2/+19
|\ \ | |/ | | | | | | Conflicts: etc/inc/upgrade_config.inc
| * Make interface sort order on creation consistent with the order displayed ↵Erik Fonnesbeck2010-05-081-2/+19
| | | | | | | | elsewhere, and fix possible missing description on LAN upon creation.
* | Small changes to fix up these pages a little bit.gnhb2010-05-121-3/+3
| |
* | Bandwidth, MTU, MRU settings working.gnhb2010-05-121-0/+2
| |
* | Use "PPPs" as the new Tab name in Interfaces -> Assign. Rename files and ↵gnhb2010-05-041-24/+15
| | | | | | | | | | | | update affected files. Also, add upgrade_config function 062_to_063.
* | Merge branch 'master' of http://gitweb.pfsense.org/pfsense/mainline into mlpppgnhb2010-05-021-1/+2
|\ \ | |/
| * Ticket #471. Bring up the removed/unassigned interface correctly if it is ↵Ermal2010-04-271-1/+2
| | | | | | | | parent to other interfaces, as vlans.
* | Removed PPP config numbering scheme. Completed PPPX assignment updates in ↵gnhb2010-04-291-21/+47
| | | | | | | | | | | | | | | | | | | | | | interfaces_assign page. Now PPP assignment to friendly interface works on Interfaces Assign page, including graceful handling of deleting interfaces, checks for preventing deletion of PPPx interfaces in use, and reordering/reassigning PPPx interfaces to various friendly ifaces. One strange behavior that occurs is that after clicking "Save" the Interfaces Assign page reloads and shows old values in the select lists sometimes.
* | Implement PPP config numbering scheme. Deleting a PPPx config doesn't renumbergnhb2010-04-281-41/+41
| | | | | | | | | | the other config sections, but saving a new or existing config renumbers all config sections. Update interfaces_assign to work properly with new scheme.
* | Fix other interfaces_* pages and keep working with mlppp.gnhb2010-03-301-5/+5
| |
* | Add new menu name to other interfaces_* pages.gnhb2010-03-301-2/+3
|/
* Fix interface assignment and re-editErmal2010-03-281-1/+1
|
* Fix displaying ppp ports.Ermal2010-03-281-4/+1
|
* Fix PPP assignment.Ermal2010-03-281-2/+2
|
* Only sync on the wireless clones that were reassigned.Erik Fonnesbeck2010-03-261-2/+4
|
* A location where the shared wireless configuration should have been synced ↵Erik Fonnesbeck2010-03-261-0/+1
| | | | had been missed (reassigning interfaces).
* Redo most of the ppp interface handling to be consistent with the other mpd5 ↵Ermal2010-03-271-8/+4
| | | | configurations. This way there is no more special handling for ppp around.
* I have PPP with mpd5 working really well now, including setting the APN and APNgnhb2010-03-261-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Number, and the SIM PIN and wait time for the SIM to settle after the PIN is entered. Still no work on multilink PPP with serial port links. Right now the code creates the mpd.secret file. I tested it using the set auth password <password> syntax in the mpd.conf file and got errors so I kept the mpd.secret file generation. PPP for modems does need the mpd.script file. It's the chat script file for the link establishment. Right now it has to be in /usr/local/sbin/mpd.script, and it's linked to /var/etc/ at boot time when ppp is first configured. I also took away the "Dialcmd" field in the PPP setup page (and a couple others) because the script is rather comprehensive and is designed to handle many modems. My two 3G modems worked without modification to the script. I did have to modify the scrip to handle the setting of APN and SIM PINs. I made the Init String field work, and the default init commands in the ATT&T, Verizion, and Sprint defaults now come up in the Init String field. You also no longer should put an "AT" at the beginning of modem commands entered in the web page because the script does that for you. I implemented interface renaming and that simplified the new code a lot, so that's nice. Now ppp interfaces start with ppp0 and go up as you add more. This patch refers to the ppp-linkup and linkdown scripts in the /usr/local/sbin/ directory so custom PPP linkup and linkdown scripts are not needed anymore. The persistent uptime tracking is still an open issue, but it works within each connected session. I'm already experiencing much smother conditions with mpd5 for PPP on 3G than I was with userland ppp. It's very nice.
* Fix checks. Reported-by: EfonneErmal2010-03-241-3/+3
|
* Catch up with php5. Reported-by: ↵Ermal2010-03-241-7/+10
| | | | http://forum.pfsense.org/index.php/topic,23860.0.html
* Sort opt10+ and wlan10+ more like the way that would be expected.Erik Fonnesbeck2010-03-111-1/+1
|
* Remove specific ppp fields if the interface is not a ppp anymore this ↵Ermal Luçi2010-03-041-0/+3
| | | | unbreaks the GUI in certain cases.
* Merge commit 'mainline/master'Erik Fonnesbeck2010-03-011-1/+3
|\
| * Ticket #356. Clear the interface configuration if neccessary. To avoid ↵Ermal Luçi2010-02-231-1/+3
| | | | | | | | strange situation described in the ticket.
* | Change method of displaying wireless clone interfaces on the assignment page.Erik Fonnesbeck2010-02-231-0/+13
| |
* | Sync configuration of shared settings between wireless clones.Erik Fonnesbeck2010-02-221-1/+3
| |
* | Add wireless tab to Interfaces: (assign) now that the configuration page is ↵Erik Fonnesbeck2010-02-151-7/+8
|/ | | | functional.
* correct function nameChris Buechler2009-12-261-1/+1
|
* Ticket #219. Fix this for vlans and vips. Though it is a very rare case. The ↵Ermal Luçi2009-12-231-0/+2
| | | | other clones are handled half way but should work ok.
* Put back a wrongly removed line.Ermal Luçi2009-12-021-0/+2
|
* Notate what code does and remove XXXsullrich2009-11-291-1/+4
|
* Call enable_rrd_graphing(); when clicking save Ticket #154sullrich2009-11-271-0/+3
|
* add captiveportal.incsullrich2009-11-261-0/+1
|
* Add ipsec.inc and vpn.incsullrich2009-11-261-3/+5
|
OpenPOWER on IntegriCloud