This repository was archived by the owner on Feb 26, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 6666
6767Flags:
6868 -f, --dhcpdd.configFile string Configuration file to use.
69- -l, --dhcpdd.listenHostPort string TCP listen host:port. (default " localhost :1020" )
69+ -l, --dhcpdd.listenHostPort string TCP listen host:port. (default " :1020" )
7070 -h, --help help for dhcpdd
7171```
7272
8686
8787Flags:
8888 -f, --dhclientd.configFile string Configuration file to use.
89- -l, --dhclientd.listenHostPort string TCP listen host:port. (default " localhost :1030" )
89+ -l, --dhclientd.listenHostPort string TCP listen host:port. (default " :1030" )
9090 -h, --help help for dhclientd
9191```
9292
Original file line number Diff line number Diff line change 11package cmd
22
33const (
4- DHCPDDHostPortDefault = "localhost :1020" // DHCPDDHostPortDefault is the default Host:port of `dhcpdd`.
5- DHClientDHostPortDefault = "localhost :1030" // DHClientDHostPortDefault is the default Host:port of `dhclient`.
4+ DHCPDDHostPortDefault = ":1020" // DHCPDDHostPortDefault is the default Host:port of `dhcpdd`.
5+ DHClientDHostPortDefault = ":1030" // DHClientDHostPortDefault is the default Host:port of `dhclient`.
66 HostPortDocs = "Host:port of the server to use." // HostPortDocs is the documentation for the host:port flag.
77 ConfigurationFileDocs = "Configuration file to use." // ConfigurationFileDocs is the documentation for the configuration file flag.)
88)
Original file line number Diff line number Diff line change 11dhclientd :
2- listenHostPort : localhost :1030
2+ listenHostPort : :1030
Original file line number Diff line number Diff line change 11dhcpdd :
2- listenHostPort : localhost :1020
2+ listenHostPort : :1020
You can’t perform that action at this time.
0 commit comments