Sponsored Content
Full Discussion: Need help turning off bootpd
Operating Systems SCO Need help turning off bootpd Post 302805179 by jgt on Thursday 9th of May 2013 06:37:27 PM
Old 05-09-2013
Try restarting tcp.
Code:
#/etc/tcp stop
#/etc/tcp start

 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Bootpd Messages

Hi , I had rebooted my Sun Machine 2 days back... I was going thru my messages file ... I notice this messages Bootpd :- IP address not found x.x.x.x Wat is this bootpd and why is it looking for IPs ... How do i turn it off .. JD (1 Reply)
Discussion started by: Jai
1 Replies

2. UNIX for Dummies Questions & Answers

Turning off MMDF permanently

This is definitely a post from a "UNIX Newbie" - we have a SCO Unix machine that houses our customer database. I have been getting reports that the system starts lagging intermittently, and have managed to determine that the cause of the slowdown is a process called MMDF. I can manually kill... (4 Replies)
Discussion started by: QmanV2
4 Replies

3. UNIX for Dummies Questions & Answers

turning off certain http requests

On a sparc solaris 8 host running sunone webserver 6 I would like to limit the http requests that can be used when port 80 is accessed. We currently have http/1.0 enabled. For example I would like to remove the http request DELETE. Regards, BLP (1 Reply)
Discussion started by: blp001
1 Replies

4. UNIX for Advanced & Expert Users

Turning off the CDE

I am running Solaris 9 and wanted the CDE stopped when my users login. Can this be done by adding something to the .profile? Basically when they login they should be at the command line and have to start the CDE themselves. Thanks (11 Replies)
Discussion started by: meyersp
11 Replies

5. Solaris

Need actual bootpd for solaris

Hi everybody, i have downloaded some archieves but i couldn't compile it without errors. please help... where can i find a bootp that works?! my hardware: sparc prozessor with solaris 8 (5.8 (2.8)) thanks Johnny (0 Replies)
Discussion started by: johnnypark
0 Replies

6. Shell Programming and Scripting

turning case into a if statement

How can i convert this case statement that i made to an if statement? Do not write script, just give a hint on how to do something below. #!/bin/sh hi="$1" case "$hi" in ) exit 0;; * ) exit 1;; esac echo "$hi" Here is what i got so far for... (2 Replies)
Discussion started by: brentdeback
2 Replies

7. UNIX for Dummies Questions & Answers

Turning Echo off

Hi, Is there any way like in dos to turn the echo off in a script? i have some lines popping up that i dont wish to be viewed when i am unziping a file it brings up the message updating: log.txt (deflated 72%) and extracting: log.txt i dont want these be viewed. Andy (4 Replies)
Discussion started by: chapmana
4 Replies

8. AIX

turning auditing on AIX 4.3

Hi, What's the best way to turn on the auditing in AIX 4.3? I'm in an environment where root password are shared with many users. Can sudoers member be audited properly? Thanks (1 Reply)
Discussion started by: itik
1 Replies

9. Solaris

Turning in.ftpd on and off

For two straight days someone was running in.ftpd in my server (apparently looking to break in) and when I would do "top" almost every line would read "in.ftpd". I had a unix sysadmin friend of mine shut it down and then start it back up in a day and a half and all seems OK for now. Here's what I... (1 Reply)
Discussion started by: thomi39
1 Replies

10. AIX

turning CIO on and how to monitor

Hi Guys, I have a database server where we run AIX 5.3 on a power5 box and we just turned on CIO (concurrent I/O) for the database filesystems. Now my assumption is that enabling CIO the database basically will bypass the filesystem cache releasing some extra memory that can be allocated... (1 Reply)
Discussion started by: hariza
1 Replies
BOOTPD(8)						      System Manager's Manual							 BOOTPD(8)

NAME
bootpd, bootpgw - Internet Boot Protocol server/gateway SYNOPSIS
bootpd [ -i -s -t timeout -d level -c chdir-path ] [ bootptab [ dumpfile ] ] bootpgw [ -i -s -t timeout -d level ] server DESCRIPTION
Bootpd implements an Internet Bootstrap Protocol (BOOTP) server as defined in RFC951, RFC1532, and RFC1533. Bootpgw implements a simple BOOTP gateway which can be used to forward requests and responses between clients on one subnet and a BOOTP server (i.e. bootpd) on another subnet. While either bootpd or bootpgw will forward BOOTREPLY packets, only bootpgw will forward BOOTREQUEST packets. One host on each network segment is normally configured to run either bootpd or bootpgw from inetd by including one of the following lines in the file /etc/inetd.conf: bootps dgram udp wait root /usr/sbin/bootpd bootpd bootptab bootps dgram udp wait root /usr/sbin/bootpgw bootpgw server This mode of operation is referred to as "inetd mode" and causes bootpd (or bootpgw) to be started only when a boot request arrives. If it does not receive another packet within fifteen minutes of the last one it received, it will exit to conserve system resources. The -t option controls this timeout (see OPTIONS). It is also possible to run bootpd (or bootpgw) in "standalone mode" (without inetd) by simply invoking it from a shell like any other regu- lar command. Standalone mode is particularly useful when bootpd is used with a large configuration database, where the start up delay might otherwise prevent timely response to client requests. (Automatic start up in standalone mode can be done by invoking bootpd from within /etc/rc.local, for example.) Standalone mode is less useful for bootpgw which has very little start up delay because it does not read a configuration file. Either program automatically detects whether it was invoked from inetd or from a shell and automatically selects the appropriate mode. The -s or -i option may be used to force standalone or inetd mode respectively (see OPTIONS). OPTIONS
-t timeout Specifies the timeout value (in minutes) that a bootpd or bootpgw process will wait for a BOOTP packet before exiting. If no pack- ets are received for timeout minutes, then the program will exit. A timeout value of zero means "run forever". In standalone mode, this option is forced to zero. -d debug-level Sets the debug-level variable that controls the amount of debugging messages generated. For example, -d4 or -d 4 will set the debugging level to 4. For compatibility with older versions of bootpd, omitting the numeric parameter (i.e. just -d) will simply increment the debug level by one. -c chdir-path Sets the current directory used by bootpd while checking the existence and size of client boot files. This is useful when client boot files are specified as relative pathnames, and bootpd needs to use the same current directory as the TFTP server (typically /tftpboot). This option is not recognized by bootpgw. -i Force inetd mode. This option is obsolete, but remains for compatibility with older versions of bootpd. -s Force standalone mode. This option is obsolete, but remains for compatibility with older versions of bootpd. bootptab Specifies the name of the configuration file from which bootpd loads its database of known clients and client options (bootpd only). dumpfile Specifies the name of the file that bootpd will dump its internal database into when it receives a SIGUSR1 signal (bootpd only). This option is only recognized if bootpd was compiled with the -DDEBUG flag. server Specifies the name of a BOOTP server to which bootpgw will forward all BOOTREQUEST packets it receives (bootpgw only). OPERATION
Both bootpd and bootpgw operate similarly in that both listen for any packets sent to the bootps port, and both simply forward any BOOTRE- PLY packets. They differ in their handling of BOOTREQUEST packets. When bootpgw is started, it determines the address of a BOOTP server whose name is provided as a command line parameter. When bootpgw receives a BOOTREQUEST packet, it sets the "gateway address" and "hop count" fields in the packet and forwards the packet to the BOOTP server at the address determined earlier. Requests are forwarded only if they indicate that the client has been waiting for at least three seconds. When bootpd is started it reads a configuration file, (normally /etc/bootptab) that initializes the internal database of known clients and client options. This internal database is reloaded from the configuration file when bootpd receives a hangup signal (SIGHUP) or when it discovers that the configuration file has changed. When bootpd receives a BOOTREQUEST packet, it looks for a database entry matching the client request. If the client is known, bootpd com- poses a BOOTREPLY packet using the database entry found above, and sends the reply to the client (possibly using a gateway). If the client is unknown, the request is discarded (with a notice if debug 0). If bootpd is compiled with the -DDEBUG option, receipt of a SIGUSR1 signal causes it to dump its internal database to the file /etc/bootpd.dump or the dumpfile specified as a command line parameter. During initialization, both programs determine the UDP port numbers to be used by calling getservbyname (which normally uses /etc/ser- vices). Two service names (and port numbers) are used: bootps - BOOTP Server listening port bootpc - BOOTP Client destination port If the port numbers cannot be determined using getservbyname then the values default to bootps=67 and bootpc=68. FILES
/etc/bootptab Database file read by bootpd. /etc/bootpd.dump Debugging dump file created by bootpd. /etc/services Internet service numbers. /tftpboot Current directory typically used by the TFTP server and bootpd. BUGS
Individual host entries must not exceed 1024 characters. CREDITS
This distribution is currently maintained by Walter L. Wimer walt+@cmu.edu. The original BOOTP server was created by Bill Croft at Stanford University in January 1986. The current version of bootpd is primarily the work of David Kovar, Drew D. Perkins, and Walter L. Wimer, at Carnegie Mellon University. Enhancements and bug-fixes have been contributed by: (in alphabetical order) Danny Backx db@sunbim.be John Brezak brezak@ch.hp.com Frank da Cruz fdc@cc.columbia.edu David R. Linn drl@vuse.vanderbilt.edu Jim McKim mckim@lerc.nasa.gov Gordon W. Ross gwr@mc.com Jason Zions jazz@hal.com SEE ALSO
bootptab(5), inetd(8), tftpd(8) DARPA Internet Request For Comments: RFC951 Bootstrap Protocol RFC1532 Clarifications and Extensions for the Bootstrap Protocol RFC1533 DHCP Options and BOOTP Vendor Extensions Carnegie Mellon University November 06, 1993 BOOTPD(8)
All times are GMT -4. The time now is 07:07 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy