Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

46xxsettings file Group ID creation for 2 separate Phone groups

Status
Not open for further replies.

Jerom

IS-IT--Management
Mar 10, 2014
69
0
6
AE
Hi,

i need a help in setting up different GroupID for 46xx Settings.
customer is asking that they need to Lock the Volume Level of a Group of (HR Phones)Phone to certain Level. Basically they don't want HR users to adjust the Ringer Volume.
i believe we can achieve this by editing the 46xx Settings file. currently i can see GroupID 0 in all Phones.

how i can have separate 46xx settings file for different Phone groups and where to Configure the group ID,s.

Seeking the help of yours...
 
Think of it like a BASIC file with "GO TO" commands

ftp://ftp.avaya.com/incoming/Up1cku9/tsoweb/46xxsettings/20210118/46xxsettings.txt

If they're H323 phones, you can set the group in the station form. If they're SIP, you have to set it in the phone or I think you might be able to in SMGR now depending what release you're on.

But unfortunately, it doesn't seem like you have the ability to stop them from adjusting the ringer entirely. There might be another way, but I haven't looked into it yet.

If you could, you'd put a SET AUDASYS line in the group 2 part of the file.

Code:
# GROUP_SETTINGS
##
##############################################################
##
## Parameter values can be set for specifically-designated groups of
## telephones by using IF statements based on the GROUP parameter.
##
## The value of GROUP can be set manually in a telephone by using the
## GROUP local craft procedure or, for H.323 telephones, it can be set
## remotely by CM based on the telephone's extension number.
## The default value of GROUP in each telephone is 0,
## and the maximum value is 999.
##
## To create a group of settings, use one of the templates below,
## or create others just like them.
##
##############################################################

IF $GROUP SEQ 1 GOTO GROUP_1
IF $GROUP SEQ 2 GOTO GROUP_2
IF $GROUP SEQ 3 GOTO GROUP_3
IF $GROUP SEQ 4 GOTO GROUP_4
IF $GROUP SEQ 5 GOTO GROUP_5
GOTO END

##############################################################
# GROUP_1
##########  Add SET Statements for GROUP 1 below  ############


################ END OF GROUP 1 SETTINGS #####################
GOTO END

##############################################################
# GROUP_2
##########  Add SET Statements for GROUP 2 below  ############


################ END OF GROUP 2 SETTINGS #####################
GOTO END

##############################################################
# GROUP_3
##########  Add SET Statements for GROUP 3 below  ############


################ END OF GROUP 3 SETTINGS #####################
GOTO END

##############################################################
# GROUP_4
##########  Add SET Statements for GROUP 4 below  ############


################ END OF GROUP 4 SETTINGS #####################
GOTO END

##############################################################
# GROUP_5
##########  Add SET Statements for GROUP 5 below  ############


################ END OF GROUP 5 SETTINGS #####################
GOTO END

##############################################################
# END
############## END OF CONFIGURATION FILE #####################

#################### AUDIBLE ALERTING #######################
##
## Specifies the audible alerting setting for the telephone
## and whether users may change this setting.
##
## A value of 0 turns off audible alerting; user cannot
## adjust ringer volume at all.
## A value of 1 turns on audible alerting; user can adjust
## ringer volume but cannot turn off audible alerting.
## A value of 2 turns off audible alerting; user can adjust
## ringer volume and can turn off audible alerting.
## A value of 3 turns on audible alerting; user can adjust
## ringer volume and can turn off audible alerting.
##
## The default value is 3.
## SET AUDASYS 3
 

Thanks Kyle555. Shall check it
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top