Description:
With the following Addin script you can configure a timezone on LANCOM devices using LCOS.
List of used variables:
Variable | Description |
---|---|
Add-in code:
/** config.setScalarByOid('1.2.14.10','timezone'); /* Possible values for timezone (GMT/UTC as base): 0 (0), +1 (1), +2 (2), +3 (3), +4 (4), +5 (5), +6 (6), +7 (7), +8 (8), +9 (9), +10 (10), +11 (11), +12 (12), +13 (13), +14 (14), -1 (255), -2 (254), -3 (253), -4 (252), -5 (251), -6 (250), -7 (249), -8 (248), -9 (247), -10 (246), -11 (245), -12 (244) */ config.setScalarByOid('1.2.14.11','daylight-saving-time'); /* Possible values for'daylight-saving-time': [ 11] Daylight-saving-time : No (0), Yes (1), Europe(EU) (2), USA (4) */ }; |
---|