forked from KolibriOS/kolibrios
061e9e3bd8
Netstat: New window for IP configuration. network.ini: New format that allows configuring more then one network device. git-svn-id: svn://kolibrios.org@5586 a494cfbc-eb01-0410-851d-a64ba20cac60
25 lines
737 B
INI
25 lines
737 B
INI
; General configuration for otherwise unlisted devices.
|
|
[ip?]
|
|
; type should be dhcp, auto or disabled.
|
|
ip_type = auto
|
|
dns_type= auto
|
|
|
|
; Specific configuration for network device 1.
|
|
[ip1]
|
|
; type can be dhcp, auto, static or disabled.
|
|
ip_type = auto
|
|
ip = 192.168.1.150
|
|
subnet = 255.255.255.0
|
|
gateway = 192.168.1.1
|
|
dns_type= auto
|
|
dns = 192.168.1.1
|
|
|
|
[proxy]
|
|
; If Internet connection requires HTTP proxy, set it here
|
|
; and uncomment following lines:
|
|
;proxy = <set your proxy IP-addr or domain name here>
|
|
;port = <set your proxy port here>
|
|
; If proxy requires authentification, uncomment following lines too
|
|
; (otherwise, leave them commented):
|
|
;user = <set username here>
|
|
;password= <set password here> |