Add new device built-ins (fw=<device>
)
Thanks goes to Geoff Simmons, who provided the definitions in https://bugs.debian.org/589980.
This commit is contained in:
parent
31173b3736
commit
f8185182e9
2 changed files with 26 additions and 0 deletions
|
@ -20,6 +20,12 @@ repository history](https://github.com/ddclient/ddclient/commits/master).
|
|||
addresses.
|
||||
* New `ssl_ca_dir` and `ssl_ca_file` options to specify the location of CA
|
||||
certificates.
|
||||
* New built-in shorthands for obtaining the IP address from the following
|
||||
devices ([thanks to Geoff Simmons](https://bugs.debian.org/589980)):
|
||||
- `alcatel-530`: Alcatel/Thomson SpeedTouch 530
|
||||
- `siemens-ss4200`: Siemens SpeedStream 4200
|
||||
- `thomson-st536v6`: Thomson SpeedTouch 536v6
|
||||
- `thomson-tg782`: Thomson/Technicolor TG782
|
||||
|
||||
### Bug fixes
|
||||
|
||||
|
|
20
ddclient.in
20
ddclient.in
|
@ -123,6 +123,11 @@ my %builtinfw = (
|
|||
'url' => '/cgi/ip/',
|
||||
'skip' => 'ppp',
|
||||
},
|
||||
'alcatel-530' => {
|
||||
'name' => 'Alcatel/Thomson SpeedTouch 530',
|
||||
'url' => '/cgi/status/',
|
||||
'skip' => 'IP Address',
|
||||
},
|
||||
'alcatel-stp' => {
|
||||
'name' => 'Alcatel Speed Touch Pro',
|
||||
'url' => '/cgi/router/',
|
||||
|
@ -258,6 +263,11 @@ my %builtinfw = (
|
|||
'url' => '/cgi-bin/webcm?getpage=%2Fusr%2Fwww_safe%2Fhtml%2Fstatus%2FRouter.html',
|
||||
'skip' => 'Internet.*?IP Address',
|
||||
},
|
||||
'siemens-ss4200' => {
|
||||
'name' => 'Siemens SpeedStream 4200',
|
||||
'url' => '/summary.htm',
|
||||
'skip' => '',
|
||||
},
|
||||
'sitecom-dc202' => {
|
||||
'name' => 'Sitecom DC-202 FW',
|
||||
'url' => '/status.htm',
|
||||
|
@ -293,6 +303,16 @@ my %builtinfw = (
|
|||
'url' => '/Status_Router.asp',
|
||||
'skip' => 'var wan_ip',
|
||||
},
|
||||
'thomson-st536v6' => {
|
||||
'name' => 'Thomson SpeedTouch 536v6',
|
||||
'url' => '/cgi/b/is/',
|
||||
'skip' => 'IP Address',
|
||||
},
|
||||
'thomson-tg782' => {
|
||||
'name' => 'Thomson/Technicolor TG782',
|
||||
'url' => '/cgi/b/is/',
|
||||
'skip' => 'IP Address',
|
||||
},
|
||||
'vigor-2200usb' => {
|
||||
'name' => 'Vigor 2200 USB',
|
||||
'url' => '/doc/online.sht',
|
||||
|
|
Loading…
Reference in a new issue