These are not necessary options; the DHCP server has reasonably intelligent defaults. Mark them as such.

git-svn-id: file:///home/svn/framework3/trunk@13164 4d416f70-5f16-0410-b530-b9f4589650da
unstable
Matt Weeks 2011-07-14 02:32:28 +00:00
parent bcfbcfec30
commit 0318379ca8
1 changed files with 6 additions and 6 deletions

View File

@ -45,13 +45,13 @@ class Metasploit3 < Msf::Auxiliary
'DefaultAction' => 'Service'
)
register_options(
register_advanced_options(
[
OptString.new('TFTPROOT', [ false, "The TFTP root directory to serve files from" ]),
OptString.new('SRVHOST', [ true, "The IP of the DHCP server" ]),
OptString.new('NETMASK', [ true, "The netmask of the local subnet" ]),
OptString.new('DHCPIPSTART', [ true, "The first IP to give out" ]),
OptString.new('DHCPIPEND', [ true, "The last IP to give out" ])
OptString.new('TFTPROOT', [ false, 'The TFTP root directory to serve files from' ]),
OptString.new('SRVHOST', [ false, 'The IP of the DHCP server' ]),
OptString.new('NETMASK', [ false, 'The netmask of the local subnet', '255.255.255.0' ]),
OptString.new('DHCPIPSTART', [ false, 'The first IP to give out' ]),
OptString.new('DHCPIPEND', [ false, 'The last IP to give out' ])
], self.class)
end