From: Ned on
Can anyone advise whats wrong with this PIUX config - I want to get
DHCP enabled...
!
interface Ethernet1
nameif inside
security-level 100
ip address 192.168.1.254 255.255.255.0
!
FW(config)# int e1
FW(config-if)# ip address 192.168.1.254 255.255.255.0
FW(config-if)# dhcpd address 192.168.1.100-192.168.1.200 inside
Interface inside ip address or netmask not valid
(0.0.0.0/255.255.255.0)
FW(config)#

Thanks,,
From: Bjarke Andersen on
Ned <terrydroconnor(a)gmail.com> crashed Echelon writing news:c19664a5-5b47-
41a2-8166-a8853520e3d9(a)q30g2000yqd.googlegroups.com:

> Can anyone advise whats wrong with this PIUX config - I want to get

> FW(config-if)# ip address 192.168.1.254 255.255.255.0
> FW(config-if)# dhcpd address 192.168.1.100-192.168.1.200 inside
> Interface inside ip address or netmask not valid
> (0.0.0.0/255.255.255.0)
> FW(config)#

Missing statement of IP address is for inside interface?

ip address inside 192.168.1.254 255.255.255.0



--
Bjarke Andersen
From: bod43 on
On 5 May, 09:48, Bjarke Andersen <bjarke.ander...(a)gmail.com> wrote:
> Ned <terrydrocon...(a)gmail.com> crashed Echelon writing news:c19664a5-5b47-
> 41a2-8166-a8853520e...(a)q30g2000yqd.googlegroups.com:
>
> > Can anyone advise whats wrong with this PIUX config - I want to get
> > FW(config-if)# ip address 192.168.1.254 255.255.255.0
> > FW(config-if)# dhcpd address 192.168.1.100-192.168.1.200 inside
> > Interface inside ip address or netmask not valid
> > (0.0.0.0/255.255.255.0)
> > FW(config)#
>
> Missing statement of IP address is for inside interface?
>
> ip address inside 192.168.1.254 255.255.255.0

I don't do much pix but config looks reasonable in
principle.

http://www.cisco.com/en/US/docs/security/pix/pix61/command/reference/df.html#wp1025497
(I see it's the wrong version but you do the legwork:)

"The size of the pool is limited to 32 addresses
for the PIX 506 platform and 256 addresses for
other platforms."

Don't suppose you have a pix 506 do you?
From: Lutz Donnerhacke on
* Ned wrote:
> Can anyone advise whats wrong with this PIUX config - I want to get
> DHCP enabled...
> !
> interface Ethernet1
> nameif inside
> security-level 100
> ip address 192.168.1.254 255.255.255.0
> !
> FW(config)# int e1
> FW(config-if)# ip address 192.168.1.254 255.255.255.0
> FW(config-if)# dhcpd address 192.168.1.100-192.168.1.200 inside
> Interface inside ip address or netmask not valid
> (0.0.0.0/255.255.255.0)
> FW(config)#

You are running a PIXos 7.0 or higher. So you do not use a 506 or below.

The error message indicates, that the PIX does not have the correct IP
address on the interface e1.

Please change the IP address first and verify the correctness of the
configuration by "show ip".

Then issue the "dhcpd address ..." command from the main configuration level
(not the interface configuration level), there might be a bug in the earlier
versions.

Please note: The PIX is not longer supported.
The last available version is 8.0(33).
From: Ned on
On 5 May, 11:01, Lutz Donnerhacke <l...(a)iks-jena.de> wrote:
> * Ned wrote:
> > Can anyone advise whats wrong with this PIUX config - I want to get
> > DHCP enabled...
> > !
> > interface Ethernet1
> >  nameif inside
> >  security-level 100
> >  ip address 192.168.1.254 255.255.255.0
> > !
> > FW(config)# int e1
> > FW(config-if)# ip address 192.168.1.254 255.255.255.0
> > FW(config-if)# dhcpd address 192.168.1.100-192.168.1.200 inside
> > Interface inside ip address or netmask not valid
> > (0.0.0.0/255.255.255.0)
> > FW(config)#
>
> You are running a PIXos 7.0 or higher. So you do not use a 506 or below.
>
> The error message indicates, that the PIX does not have the correct IP
> address on the interface e1.
>
> Please change the IP address first and verify the correctness of the
> configuration by "show ip".
>
> Then issue the "dhcpd address ..." command from the main configuration level
> (not the interface configuration level), there might be a bug in the earlier
> versions.
>
> Please note: The PIX is not longer supported.
> The last available version is 8.0(33).

PIX is a PIX-515E

FW# show ip
System IP Addresses:
Interface Name IP address Subnet
mask
Method
Ethernet0 outside 89.191.49.5
255.255.255.224
manual
Ethernet1 inside 192.168.1.254
255.255.255.0
manual
Current IP Addresses:
Interface Name IP address Subnet
mask
Method

FW# conf t
FW(config)# dhcpd address 192.168.1.100-192.168.1.200 inside
Interface inside ip address or netmask not valid
(0.0.0.0/255.255.255.0)
FW(config)# exit
FM-FW#