HomeSort by relevance Sort by last modified time
    Searched refs:networks (Results 1 - 25 of 27) sorted by null

1 2

  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/data/
ExportHeader.java 56 * Networks exported in this file
58 private Network [] networks; field in class:ExportHeader
68 * @param networks list of networks exported
71 Network [] networks) {
76 this.networks = networks;
116 * Retrieve the list of networks which are exported in this file.
117 * @return An array of networks
120 return networks;
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/cli/pntadm/
ListNetworkTables.java 78 // Get the list of networks.
80 Network [] networks = null; local
82 networks = getNetMgr().getNetworks(getDhcpDatastore());
90 if (networks != null) {
91 for (int i = 0; i < networks.length; i++) {
92 System.out.println(networks[i].toString());
ResourceBundle.properties 98 usage=pntadm [-r (resource)] [-p (path)] [-u (uninterpreted data)] (options) [(network ip or name)]\n\nWhere (options) is one of:\n\n -C Create the named table\n\n -A (client ip or name) Add client entry. Sub-options:\n [-c (comment)]\n [-e (lease expiration)]\n [-f (flags)]\n [-h (client host name)]\n [-i (client identifier)[-a]]\n [-m (dhcptab macro reference)[-y]]\n [-s (server ip or name)]\n\n -M (client ip or name) Modify client entry. Sub-options:\n [-c (new comment)]\n [-e (new lease expiration)]\n [-f (new flags)]\n [-h (new client host name)]\n [-i (new client identifier)[-a]]\n [-m (new dhcptab macro reference)[-y]]\n [-n (new client ip)]\n [-s (new server ip or name)]\n\n -D (client ip or name) Delete client entry. Sub-options:\n [-y] Remove hosts table entry\n\n -R Remove the named table\n\n -P Display the named table. Sub-options:\n [-v] Display lease time in full format.\n [-x] Display lease time in raw format.\n\n -L List the configured DHCP networks\n\n -B [batchfile] Run command in batch input mode. Sub-options:\n [-v] Output commands as they are processed.\n\n The network ip or name argument is required for all options except -L and -B\n
  /onnv/onnv-gate/usr/src/cmd/ypcmd/
ypxfr_1perday.sh 38 ypxfr networks.byname
39 ypxfr networks.byaddr
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/common/
ExportController.java 58 Network [] networks = emptyNets; field in class:ExportController
108 * Specify that all networks are to be exported
112 networks = emptyNets;
116 * Specify the networks to be exported.
117 * @param networks An array of Network objects which should be exported
119 public void setNetworks(Network [] networks) {
121 // Never allow networks to be null
122 if (networks != null) {
123 this.networks = networks;
    [all...]
ResourceBundle.properties 42 exp_err_loading_networks=Unable to load the list of networks; error was:\n{0}
51 exp_err_deleting_networks=The following errors occurred while deleting networks:
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/client/
DataManager.java 52 private Network [] networks; field in class:DataManager
76 networks = new Network[0];
178 synchronized (networks) {
179 if (forceUpdate || networks.length == 0) {
180 networks = getDhcpNetMgr().getNetworks();
181 if (networks == null) {
182 networks = new Network[0];
184 Arrays.sort(networks);
188 return networks;
DeleteNetworksDialog.java 46 * A dialog to remove one or more networks from the DHCP configuration.
51 private Vector networks; field in class:DeleteNetworksDialog.NetworkListModel
54 networks = new Vector();
58 networks.removeAllElements();
65 networks.addElement((Network)nets[i]);
68 fireContentsChanged(this, 0, networks.size()-1);
73 networks.removeElement((Network)nets[i]);
75 fireContentsChanged(this, 0, networks.size()-1);
79 return networks.elementAt(index);
83 return networks.size()
    [all...]
ConvertWizard.java 83 * List of networks to be converted.
85 private Network[] networks = null; field in class:ConvertWizard
393 networks = netServer.getNetworks(oldDhcpDatastore);
394 if (networks == null) {
395 networks = new Network[0];
413 final int tables = networks.length + 1;
505 for (int i = 0; i < networks.length; ++i) {
506 String netString = networks[i].toString();
555 for (int i = 0; i < networks.length; ++i) {
556 String netString = networks[i].toString()
    [all...]
ExportWizard.java 51 // Step to collect the networks to be exported
66 ResourceStrings.getString("exp_wiz_export"), networks);
87 networks =
380 networkList.setListData(networks);
463 private Network [] networks = new Network[0]; field in class:ExportWizard
573 exportController.setNetworks(networks);
ResourceBundle.properties 98 no_networks=No networks
100 networks_loaded=Found {0,number} networks
406 cfg_wiz_network_explainmore=The DHCP server will be configured to provide IP addresses to clients on this network. Later, you can configure this server to support additional networks with the Network Wizard.
479 cvt_wiz_networks_error=Error getting networks: {0}
492 net_wiz_net_explain=This wizard will help you configure additional networks on your DHCP server. For each network, the wizard creates a network macro to supply clients with relevant network information and a network table to record IP address assignments.\n\nSelect a network from the list, or type in a network address, then type in a subnet mask if the displayed default is not correct.
544 # Delete Networks dialog
546 delete_networks=Delete &Networks
547 delete_networks_title=Delete Networks
548 delete_networks_keep=&Keep Networks:
549 delete_networks_delete=&Delete Networks
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/cli/dhcpconfig/
UnconfigureDhcp.java 127 // clean up the dhcptab or the networks.
149 Network[] networks = new Network[0]; local
151 networks = getNetMgr().getNetworks();
152 if (networks == null) {
153 networks = new Network[0];
164 for (int i = 0; i < networks.length; ++i) {
165 String netString = networks[i].toString();
ConvertDataStore.java 173 Network[] networks = new Network[0]; local
175 networks = getNetMgr().getNetworks(oldDatastore);
176 if (networks == null) {
177 networks = new Network[0];
188 for (int i = 0; i < networks.length; ++i) {
189 String netString = networks[i].toString();
218 for (int i = 0; i < networks.length; ++i) {
219 String netString = networks[i].toString();
ResourceBundle.properties 76 unconfigure_get_nets_error=Error - determining list of networks. {0}
94 convert_get_nets_error=Error - failure getting list of networks. {0}
  /onnv/onnv-gate/usr/src/cmd/netfiles/
nsswitch.ad 57 networks: files
nsswitch.dns 50 networks: files
nsswitch.conf 46 networks: nis [NOTFOUND=return] files
  /onnv/onnv-gate/usr/src/cmd/initpkg/
nscd.conf 32 # networks, passwd, printers, prof_attr, project
85 positive-time-to-live networks 3600
86 negative-time-to-live networks 5
87 keep-hot-count networks 20
88 check-files networks yes
  /onnv/onnv-gate/usr/src/cmd/ypcmd/net_files/
Makefile 84 all: passwd group hosts ipnodes ethers networks rpc services protocols \
169 networks.time: $(DIR)/networks
170 @(sed -e "/^#/d" -e s/#.*$$// $(DIR)/networks $(CHKPIPE)) |( awk \
172 $(CHKPIPE) )| $(MAKEDBM) - $(YPDBDIR)/$(DOM)/networks.byname;
174 $(DIR)/networks $(CHKPIPE)) | $(MAKEDBM) - $(YPDBDIR)/$(DOM)/networks.byaddr;
175 @touch networks.time;
176 @echo "updated networks";
177 @if [ ! $(NOPUSH) ]; then $(YPPUSH) -d $(DOM) networks.byname; f
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/etc/
Makefile 24 SYMPROG= hosts inetd.conf networks protocols services netmasks sock2path
  /onnv/onnv-gate/usr/src/cmd/rpcsvc/nis/bin/
nissetup.sh 302 if nistest networks.org_dir.$D;
304 echo networks.org_dir.$D already exists;
306 if nistbladm -D $A -c networks_tbl cname=SI,$CA name=SI,$CA addr=SI,$CA comment=,$CA networks.org_dir.$D;
308 echo networks.org_dir.$D created;
310 echo couldn\'t create networks.org_dir.$D;
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/
Functions.pm 193 endnetent User be done using networks file
218 getnetbyname Network get networks record given name
219 getnetent Network get next networks record
316 setnetent Network prepare networks file for use
  /onnv/onnv-gate/usr/src/cmd/ypcmd/yp2lscripts/
ypmap2src.sh 119 networks )
120 MAP=${N2LPREFIX}networks.byaddr
361 SRCFILE=networks
373 # Sort networks based on their names
741 networks.byaddr
765 ${N2LPREFIX}networks.byaddr
877 ${N2LPREFIX}networks.byaddr )
  /onnv/onnv-gate/usr/src/pkgdefs/SUNWcsr/
prototype_com 170 e preserve etc/inet/networks 644 root sys
221 s none etc/networks=./inet/networks
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Opcode/
Opcode.pm 465 gnbyname gnbyaddr gnetent snetent enetent -- networks

Completed in 480 milliseconds

1 2