Mac address and doc
This commit is contained in:
parent
a9fcc222c2
commit
b4d0302d76
17
Phones/7940-7960/README.md
Normal file
17
Phones/7940-7960/README.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
# 7940 - 7960 Series :
|
||||
## Intro :
|
||||
|
||||
You will need an IPv4 Network with :
|
||||
* DHCP server
|
||||
* TFTP server
|
||||
* physical access to the phone
|
||||
|
||||
## Factory reset sequence :
|
||||
When the phone start's up, (either POE or local adapter), dial the `#` until the screen starts up.
|
||||
When the screen tell's factory reset sequence, Dial `1 2 3 4 5 6 7 8 9 * 0 #` in that order. Phone will ask you if you want to save his network config.
|
||||
Dial 2 (network config erase).
|
||||
|
||||
## Flashing process :
|
||||
After factory reset, the phone will look up in the TFTP server for his own config file (`SEP<mac-address>.cnf.xml`)
|
||||
In the case of flashing to SIP firmware, that file has to contain the fact that it goes to SIP and a firmware version.
|
||||
All system files must be stored at the root of the TFTP server.
|
2
Scripts/c79407960.py
Normal file
2
Scripts/c79407960.py
Normal file
|
@ -0,0 +1,2 @@
|
|||
def main():
|
||||
print("test")
|
12
gen.py
12
gen.py
|
@ -2,9 +2,19 @@
|
|||
Config Generator for VOIP Phones
|
||||
Arnold Dechamps 2022
|
||||
"""
|
||||
from Scripts import c79407960
|
||||
|
||||
def main():
|
||||
print("hello world")
|
||||
print("Hello, what phone system would you like to provision?")
|
||||
print(" * 1) Cisco 7940")
|
||||
print(" * 2) Cisco 7960")
|
||||
print(" * 3) Cisco 7911")
|
||||
print(" * 4) Cisco 7906")
|
||||
|
||||
phone_choice = int(input("Choice : "))
|
||||
|
||||
if phone_choice == 1 or phone_choice == 2:
|
||||
c79407960.main()
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
Loading…
Reference in a new issue