Changes

no edit summary
Line 18: Line 18:  
* PAP authentication method
 
* PAP authentication method
   −
Open the '''config_generate''' script and navigate to the line 178. There, you should be able to see the '''"add_modem_section()"''' portion of the script, where we will be making our changes. To set a custom APN, you will need to add the following lines to the existing "uci_set" commands:
+
Open the '''config_generate''' script and navigate to the line 178. There, you should be able to see the '''"add_modem_section()"''' function, where we will be making our changes. To set a custom APN, you will need to add the following lines to the existing "uci_set" commands:
 
* uci_set network "${interface}" force "-1"
 
* uci_set network "${interface}" force "-1"
 
* uci_set network "${interface}" apn "YOUR_APN"
 
* uci_set network "${interface}" apn "YOUR_APN"
Line 24: Line 24:  
* uci_set network "${interface}" username "YOUR_USERNAME"
 
* uci_set network "${interface}" username "YOUR_USERNAME"
 
* uci_set network "${interface}" password "YOUR_PASSWORD"
 
* uci_set network "${interface}" password "YOUR_PASSWORD"
After applying the aforementioned changes, the '''"add_modem_section()"''' portion of the script should look similar to this:
+
After applying the aforementioned changes, the '''"add_modem_section()"''' function in the script should look similar to this:
 
[[File:Apn dif fin.png|left]]
 
[[File:Apn dif fin.png|left]]
 +
 +
===Changing the default LAN IP address===
 +
----
 +
 +
Open the '''config_generate''' script and navigate to the line 70; there, you should be able to see the '''"generate_network()"''' function, where we will be applying the following changes. For demonstration purposes, our custom LAN IP address will be set to '''"10.10.10.1"''':
 +
* In the line 119 you should be able to see the '''"ipad=${ipaddr:-"%%LAN_IP%%"}"''' line. Change the '''"%%LAN_IP%%"''' portion with your desired LAN IP address; for example: '''"ipad=${ipaddr:-"10.10.10.1"}"'''
 +
After applying this change, the '''"generate_network()"''' function should look similar to this:
 +
[[File:Lan ip fin.png|left]]

Navigation menu