Displaying 4 results from an estimated 4 matches for "new_ip_address".
Did you mean:
nas_ip_address
2004 Aug 03
1
network scripts debian
...es ifconfig created and add any needed routes with ip
commands?
Or am I best setting up the connections from scratch?
Also related is some of interfaces are dynamic.
I ran rewrite dhclient-script or just rebuild routes in
dhclient-exit-hooks.d.
Also dhcpd-script gives
new_subnet_mask=.........
new_ip_address=....
new_network_number=......
interface=eth2
But for ip route need the length part of new_network_number/length
Is there a simple way to calculate length from new_subnet_mask ?
Thanks
John
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman...
2006 Jan 23
0
Specify sending machine from mailx command line?
When using "mail" (from the mailx package) to send mail from the command
line, can I specify the sending system name?
I want to mail the occasional status message to my personal e-mail account
from a server machine. Something like this:
echo "New IP address: $new_ip_address" | \
mail -s "DHCP - $interface addr change" myname at myisp.com
When I attempt to send mail from machine server.mydomain.lan my ISP sees
incoming mail from "localhost.mydomain.lan [127.0.0.1]" and bounces it as
being blacklisted.
Is there a way to submit an acc...
1999 May 19
3
NT network can't browse Samba
Hi,
I'm trying to setup a Linux box with Samba (1.9.18p10) and it isn't
having any luck making a home for itself on the network.
If I go to a Windows95 machine, I see all (well most) machines on the
net there, but not the Linux box. I can also not see any other machines
from the Linux box.
Here is log.nmbd output that repeats every 5 seconds or so:
find_workgroup_on_subnet: workgroup
2009 May 15
0
[PATCH server] use service layer for Network controller.
...ef ip_addresses_json
+ svc_ip_addresses(params[:parent_type], params[:id])
ip_addresses_json = []
- ip_addresses.each{ |x|
+ @ip_addresses.each{ |x|
ip_addresses_json.push({:id => x.id, :name => x.address}) }
render :json => ip_addresses_json
end
def new_ip_address
- @parent_type = params[:parent_type]
- @network = Network.find(params[:id]) if @parent_type == 'network'
- @nic = Nic.find(params[:id]) if @parent_type == 'nic'
- @bonding = Bonding.find(params[:id]) if @parent_type == 'bonding' and params[:id]
-
+ svc_ip_add...