Mac address and doc

This commit is contained in:
Arnold Dechamps 2022-12-18 03:21:51 +01:00
parent a9fcc222c2
commit b4d0302d76
No known key found for this signature in database
GPG key ID: AE66543374E41C89
5 changed files with 30 additions and 1 deletions

View 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
View file

@ -0,0 +1,2 @@
def main():
print("test")

12
gen.py
View file

@ -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()