Oracle VM - defining a static network

Hi,
I'm not sure if I'm thinking about this right or not, but I'm trying to define an interface on a VM that uses a static ip address. I'm doing this through the web services API, but I would be happy to better understand how OVM does networking.
In any case, I'm calling the addNIC command which requires a VM and a NICconfig. The NICconfig has a place for IP address, netmask, etc. Here is an example set of args I provide:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<jbi:message xmlns:msgns="http://oracle.ovs.api/" type="msgns:LifecycleService_addNIC" version="1.0" xmlns:jbi="http://java.sun.com/xml/ns/jbi/wsdl-11-wrapper">
<jbi:part>
<addNICElement xmlns="http://oracle.ovs.api/types/">
<virtualMachine xmlns:ns0="http://oracle.ovs.api/types/" xmlns:ns1="http://www.oracle.com/webservices/internal/literal" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns0:VirtualMachine">
<ns0:imgName>test-vm-2</ns0:imgName>
<ns0:comments xsi:nil="1"/>
<ns0:imgId>110</ns0:imgId>
<ns0:bootDevice>
<ns0:bootDevice>HDD</ns0:bootDevice>
</ns0:bootDevice>
<ns0:imgSize>6205</ns0:imgSize>
<ns0:vncPassword>XXXXXXXX</ns0:vncPassword>
<ns0:maximumMemory>1024</ns0:maximumMemory>
<ns0:publish xsi:nil="1"/>
<ns0:cpuNumber>1</ns0:cpuNumber>
<ns0:haEnable>false</ns0:haEnable>
<ns0:uuid>69949450-d3b9-4ffa-a0a2-8b0b7c4198c7</ns0:uuid>
<ns0:operatingSystemName>Oracle Enterprise Linux 5 64-bit</ns0:operatingSystemName>
<ns0:createTime>1257357624422</ns0:createTime>
<ns0:parentImg>90</ns0:parentImg>
<ns0:systemPassword xsi:nil="1"/>
<ns0:location>110_test-vm-2</ns0:location>
<ns0:memory>1024</ns0:memory>
<ns0:systemLogin xsi:nil="1"/>
<ns0:platform xsi:nil="1"/>
<ns0:deploy>Auto</ns0:deploy>
<ns0:status>
<ns0:code>2</ns0:code>
<ns0:status>Powered Off</ns0:status>
<ns0:vmId>0</ns0:vmId>
</ns0:status>
<ns0:vncPort xsi:nil="1"/>
<ns0:imgIp xsi:nil="1"/>
<ns0:poweronTime xsi:nil="1"/>
<ns0:architecture xsi:nil="1"/>
<ns0:virtualMachineType>
<ns0:vmType>Paravirtualized</ns0:vmType>
</ns0:virtualMachineType>
<ns0:keyboardLayout>en-us</ns0:keyboardLayout>
<ns0:pvdriver>false</ns0:pvdriver>
<ns0:cpuCap>100</ns0:cpuCap>
<ns0:cpuPriority>50</ns0:cpuPriority>
</virtualMachine>
<nicConfig>
<ipAddress>129.146.137.195</ipAddress>
<subnetMask>255.255.255.0</subnetMask>
<qosEnabled>false</qosEnabled>
<dnsServer/>
<frontEndName/>
<domainName/>
<defaultGateway/>
<hostName>vm-test2</hostName>
<rateLimit>0.0</rateLimit>
<bridge>xenbr0</bridge>
<networkConfType>
<type>STATIC</type>
</networkConfType>
<name>VIF0</name>
<networkType>
<networkType>NETFRONT</networkType>
</networkType>
<macAddress>00:16:3E:11:11:11</macAddress>
</nicConfig>
</addNICElement>
</jbi:part>
</jbi:message>
However, when I do an ifconfig -a on the VM, there are two main issues:
1. The eth0 interface looks to be preconfigured, but does not show up when I query the interfaces on the VM
2. The eth1 has the MAC address provided above, but does not have the IP address or netmask set
Some side questions:
* what are appropriate values for "frontEndName"?
* can Oracle VM generate a MAC address for me using the API? If so, how? I tried to leave it empty and got an error indicating that it must be provided.
Thanks in advance,
John

jxstanford wrote:
That makes sense (not that it's proper). I'm basically seeing what you described which is an initial interface that shows up in vm.cfg, but not in the OVM GUI. I'm still struggling to define a static interface with an IP address. When you mass create your VMs, are you using DHCP to assign addresses, or do you have a solution for setting up a static IP address?I have a solution: I use a source text file that contains data like server hostname, IP address, netmask, static routes, etc. I then cycle through each VM and loop-mount the system.img itself. Once mounted, I inject the configuration details into the appropriate files on the disk (like a ninja!). This is possible for both normally partitioned and LVM-based virtual disks, though the LVM stuff requires a little bit more work to enable/disable the volume groups each time. If you ping me at my [email protected], I can send you the (very dodgy) script I've been using so far.
Note however that this is something that Enterprise Manager's VM Management Pack can do in a GUI environment: You are able to mass create/configure guests using EM and it will use the same mechanism to inject IP configuration data into the guest prior to boot. It can also auto-configure EM agent as well.

Similar Messages

  • Internal Error in reading a Table of Oracle custom-defined objects.

    Hi,
    We are running into an Oracle internal error when trying to extract data from an OUT parameter of a stored procedure. The OUT parameter is of the type TABLE of Oracle custom-defined OBJECT.
    Any help on this issue will be greatly appreciated.
    Thanks, in advance,
    OraNew
    Program:
    package test;
    import java.sql.CallableStatement;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Types;
    import java.util.ArrayList;
    import java.util.List;
    import oracle.sql.ARRAY;
    import oracle.sql.STRUCT;
    import src.vo.ProfileBank;
    public class TestOracle {
    * @param args
    public static void main(String[] args) {
    try{
    Connection con = getConnection();
    ResultSet rsBalance = null;
    CallableStatement cs =
    con.prepareCall("{ CALL acr_profiles.get_profile_bank( ?, ?, ?)}");
    cs.setLong(1, new Long(133).longValue());
    cs.setLong(2, new Long(29032).longValue());
    cs.registerOutParameter(3,Types.ARRAY,"ACR_USER." + "ACR_PROF_BANK_TAB");
    cs.execute();
    ARRAY array = (oracle.sql.ARRAY) cs.getObject(3);
    System.out.println("length: "+ array.length());
    System.out.println("isConvertible: " + array.isConvertibleTo(Object.class));
    System.out.println("isInline: " + array.isInline());
    rsBalance = array.getResultSet();
    showResultSet(rsBalance);
    } catch (Exception sql){
    System.out.println("Exception "+ sql);
    public static void showResultSet (ResultSet rs) throws SQLException
    System.out.println("ResultSet = "+ rs.toString());
    List profileBanks = new ArrayList();
    while (rs != null && rs.next()) {
    STRUCT struct = (STRUCT)rs.getObject (2); //getting the Internal Error on this line.
    Object[] attribs = struct.getAttributes();
    System.out.println("Bank Alias Id"+ (java.math.BigDecimal) attribs[0]);
    System.out.println("Bank Name"+ (String)attribs[1]);
    System.out.println("Bank set flag "+ (String) attribs[2]);
    ProfileBank pBank = new ProfileBank();
    pBank.setBankAliasId(new Integer(((java.math.BigDecimal) attribs[0]).intValue()));
    pBank.setBankName((String) attribs[1]);
    pBank.setSelBankFlag((String) attribs[2]);
    profileBanks.add(pBank);
    public static Connection getConnection() throws ClassNotFoundException, SQLException {
    Class.forName("oracle.jdbc.driver.OracleDriver");
    System.out.println("Driver loaded");
    // establish a connection
    Connection conn = DriverManager
    .getConnection(
    "jdbc:oracle:thin:@(DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST=10.3.11.201)(Port=1521)) (CONNECT_DATA=(SERVICE_NAME= aada.a.al)))",
    "acr_user", "acr_user");
    System.out.println("Database connected");
    return conn;
    Console Output:
    Driver loaded
    Database connected
    length: 2
    isConvertible: false
    isInline: true
    ResultSet = oracle.jdbc.driver.ArrayDataResultSet@1f3aa07
    Exception java.sql.SQLException: Internal Error
    Partial Stacktrace obtained from the Eclipse Debug window:
    oracle.jdbc.driver.DatabaseError.throwSqlException(int) line: 292
    oracle.jdbc.oracore.OracleTypeCOLLECTION.initCollElemTypeName() line: 1192
    oracle.jdbc.oracore.OracleTypeCOLLECTION.getAttributeType(int) line: 1225
    oracle.jdbc.oracore.OracleTypeADT(oracle.jdbc.oracore.OracleNamedType).getFullName(boolean) line: 119
    oracle.jdbc.oracore.OracleTypeADT(oracle.jdbc.oracore.OracleNamedType).getFullName() line: 93
    oracle.sql.StructDescriptor(oracle.sql.TypeDescriptor).initSQLName() line: 497
    oracle.sql.StructDescriptor(oracle.sql.TypeDescriptor).getName() line: 392
    oracle.sql.StructDescriptor.getClass(java.util.Map) line: 2003
    oracle.sql.STRUCT.toJdbc(java.util.Map) line: 983
    oracle.jdbc.driver.ArrayDataResultSet.getObject(int, java.util.Map) line: 1379
    oracle.jdbc.driver.ArrayDataResultSet.getObject(int) line: 1198
    test.TestOracle.showResultSet(java.sql.ResultSet) line: 53
    test.TestOracle.main(java.lang.String[]) line: 38
    Environment:
    Database: Oracle 10g (10.2.0.3)
    JDBC Drivers: version 10.2.0.3 (ojdbc14, orai18n)
    Database Server: HP-UX
    Client machine: Windows XP
    <end of thread>

    hi Thom,
    most error relating to table DOKTL are caused by misconfigured network card.
    if this is a "home" system, install a loopback adapter from Microsoft and use IP address 127.0.0.1 and also check "hosts" file for inconsistency. do not use the IP adddress provided by your ISP as it may change.

  • Installation: HPLIP, and remote printing from ANDROID, & iOS to a static networked HP printer

    I recently installed an HP LaserJet Professional m1212nf MFP Printer on my network and gave it a static IP address.  On my main computer (also statically networked - Ubuntu 12.04) I installed the hplip services and can successfully print to it.  On the same computer I have a Dymo Labelwriter and an HP ColorLaserJet 1215 connected by USB.
    I can print from my iPhone and tablet running Android's ICS to the labelmaker and the color laserjet using Airprint services, but I can't print to the m1212nf with Airprint.  If I print via the CUPS driver using Airprint I get a successsful completion of the printout, but the printer doesn't print.  Now, since the printer m1212nf is NOT connected to the CUPS print server by USB, that makes sense unless I can be told how to set up CUPS to print to the device on the network.
    -or-
    I think, from what I've read so far, that Icould use eprint if there was a way to put a windows driver (Yes, begrudgingly I have access to a Windows laptop that I can put on my network) on the m1212nf as well as the hplip driver that currently lets it communicate with my primary computer.
    I would prefer an Airprint solution as Airprint works with the mobile devices to the other two printers.
    This question was solved.
    View Solution.

    OK, Egg on my face!  
    Turns out iOS worked perfectly fine, but the Android app I had on my tablet didn't.  Upon further pursuit of the Android issue, I found only one free app that did work (at least for text) in the play store, but that one was really a "trial" version as the printout was watermarked, but one could remove the watermark for two separate prices, one for text and another for photos. 
    But, by replying with a solution to this problem myself, I consider it {SOLVED].  Futhermore it leaves no doubt that Airprint and the "airprint-generate" script do work for versions of Ubuntu on the Ubuntu side.

  • Bare Metal Deployments: The BMC can't have IP Address defined in logical network?

    I have defined a logical network, a logical switch, and a port profile.  I apply the logical switch (the NIC teaming settings) and a virtual network adapter that inherits the hosts network configuration (pass through config. no software defined networking)
    to each of my Hyper-V hosts successfully.
    The issue occurs once I have defined that logical network, I can no longer deploy bare metal hosts because the BMC obtains an IP within that logical network.  You see the BMC IPs and NICs are on the same subnet/VLAN.
    What's the best practice or perhaps best method to get around this issue?

    I am not sure if I follow you on this one.
    You have created a logical network for your BMC in VMM? If so, why have you done that?
    The bare-metal process requires both PXE and
    DHCP during this process, and the scope should therefore be in DHCP and not VMM for this purpose. 
    Can you try to do that? (If this is a lab environment, you could add the DHCP service to your PXE server or even VMM server).
    -kn
    Kristian (Virtualization and some coffee: http://kristiannese.blogspot.com )

  • Generate Java class from Oracle Type defined in Package w/ JPublisher

    I was wondering if its possible to generate a Java class for an Oracle Type defined in a Package? I know passing the package name to JPublisher (SQL <package_name>) causes all Oracle Types in the Package to have a Java class generated for them but I'd like to be able to do this for an individual Type defined in a Package (something like SQL <package_name>.<type_name>).
    Thanks for any information you can give me.

    Hi Marinel,
    The support for XSD import is limited on 10.1.2. If you can, you should consider moving to the 10.1.3 preview as the support for document style web services has improved. The other option will be to inline the schema in your WSDL.
    Eric.

  • Issue in passing Oracle User Defined Types to PL SQL from Websphere Applica

    HI,
    I am facing an issue when trying to pass Oracle collection object(User Defined Types) from Java to PL SQL. The issue happens inside J2EE application which is running inside Websphere Application Server 6.x. My database is Oracle 10g and i am using ojdbc1.4.jar as thin driver.
    The issue is that when i pass the Oracle Object from java side, the attribute values of the collection objects at the Oracle PL SQL side is coming as empty. I have tried the same java code in a standalone application and it works fine. The issue happens only when the application is running inside WAS.
    Anybody has any idea how to pass Oracle User Defined Types from WAS 6.x server to Oracle PL SQL?

    Andy Bowes wrote:
    Hi
    I am using WebLogic 8.14 & Oracle 9i with thin JDBC driver.
    Our application needs to perform the same DB operation for every item in a Java Collection. I cannot acheive the required performance using the standard Prepare & Execute loop and so I am looking to push the whole collection to Oracle in a single invocation of a Stored Procedure and then loop on the database.
    Summary of Approach:
    In the Oracle database, we have defined a Object Type :
    CREATE OR REPLACE
    TYPE MYTYPE AS OBJECT
    TxnId VARCHAR2(40),
    Target VARCHAR2(20),
    Source VARCHAR2(20),
    Param1 VARCHAR2(2048),
    Param2 VARCHAR2(2048),
    Param3 VARCHAR2(2048),
    Param4 VARCHAR2(2048),
    Param5 VARCHAR2(2048),
    and we have defined a collection of these as:
    CREATE OR REPLACE
    TYPE MYTYPE_COLLECTION AS VARRAY (100) OF MYTYPE
    There is a stored procedure which takes one of these collections as an input parameter and I need to invoke these from within my code.
    I am having major problems when I attempt to get the ArrayDescriptor etc to allow me to create an Array to pass to the stored procedure. I think this is because the underlying Oracle connection is wrapped by WebLogic.
    Has anyone managed to pass an array to an Oracle Stored procedure on a pooled DB connection?
    Thanks
    AndyHi. Here's what I suggest: First please get the JDBC you want to work in a
    small standalone program that uses the Oracle thin driver directly. Once
    that works, show me the JDBC code, and I will see what translation if
    any is needed to make it work with WLS. Will your code be running in
    WebLogic, or in an external client talking to WebLogic?
    Also, have you tried the executeBatch() methods to see if you can
    get the performance you want via batches?
    Joe

  • 10g - cache, report contains oracle user defined function

    hi, experts,
    from http://obiee101.blogspot.com/2008/07/obiee-cache-management.html
    Reasons Why a Query is Not Added to the Cache:
    •Non-cacheable SQL element. If a SQL request contains Current_Timestamp, Current_Time, Rand, Populate, or a parameter marker then it is not added to the cache.
    •Non-cacheable table. Physical tables in the Oracle BI Server repository can be marked 'noncacheable'. If a query references any non-cacheable table then the query results will not be added to the cache.
    •Cache hit. In general, if the query gets a cache hit on a previously cached query, then the results of the current query are not added to the cache. The exception is query hits that are aggregate roll-up hits.
    •Result set is too big.
    Query is cancelled. This can happen by explicit cancellation from Oracle BI Presentation Services or the Administration Tool, or implicitly through timeout.
    •Oracle BI Server is clustered. Queries that fall into the ‘cache seeding’ family are propagated throughout the cluster. Other queries continue to be stored locally. Therefore, even though a query may be put into the cache on Oracle BI Server node 1, it may not be on Oracle BI Server node 2.
    I would like to know
    if the request (report on dashboard) calls an oracle user defined function,  can the cache be created and saved for this report?
    thank you very much!

    Hi stephen,
    if the request (report on dashboard) calls an oracle user defined function, can the cache be created and saved for this report?Yes,it is cached.....function defined in database is called in OBIEE is cached and saved.
    More information and example can be found here http://oraclebizint.wordpress.com/2007/09/10/oracle-bi-ee-10133-support-for-native-database-functions-and-aggregates/
    Hope it helps you.Check all other questions you posted are answered?
    By,
    KK

  • How to run the oracle application cleint using static ip or domain please e

    How to run the oracle application cleint using static ip or domain please explain me.
    i am not able to run oracle forms in client machine how to run it please explain me
    Please give me detail regarding that
    any body please help me.
    my mail id::::: [email protected]

    You did not mention exactly which Forms version you are using so it will be difficult to offer specific help. However, you did mention Forms 9i. ALL "9i" releases were desupported long ago, so find software or documentation are becoming more difficult.
    Here is the Deployment Guide for Forms 10.1.2
    http://download.oracle.com/docs/cd/B19375_07/doc/frs/forms/B14032_03/toc.htm
    Here are some technical reference for Forms 9.0.x
    http://www.oracle.com/technology/products/forms/techlisting9i.html

  • Which two statements define a Static Record Group?

    Hi all
    I read this question and I do not know the answer
    the question is
    Which two statements define a Static Record Group? (Choose two)
    A. The Record Group can be created only at run time.
    B. The Record Group is not associated with a query.
    C. The Record Group can be created and modified only at design time.
    D. The Record Group can be created and modified at design time or at run time.
    E. You can modify the structure of this Record Group by adding columns and rows at run time.
    F. You can modify the structure of this Record Group by associating it with a query at run time.

    Types of record group, either Static or Query:
    Static     Specifies that the record group is constructed of explicitly defined column names and column values.
    The values of a static record group are specified at design time and cannot be changed at runtime.
    Query     Specifies that the record group is associated with a SELECT statement, and thus can be populated dynamically at runtime.
    When you select this option, enter the SELECT statement in the multi-line field provided, then choose Apply.
    So answers B and C
    From Forms Help

  • Can i set up airport to be dhcp on a static network?

    I have a static network at work and would like to open my internet up to our customers.  MY question is how can I set up a apple airport ( or multiple we have a large area) to assign DHCP addresses to customers via WYFY
    I was thinking something like this:
    Modem -> Router -> Airport -> Wireless DHCP
                      |
                      |
                     V
                Work PC's Static Ip's
    It would be a requirement that the wireless connections were on a seperate network that could not see any of the work PC's
    Thanks,
      Ryan Cooper

    Modem -> Router -> Airport -> Wireless DHCP
                      |
                      |
                     V
                Work PC's Static Ip's
    It would be a requirement that the wireless connections were on a seperate network that could not see any of the work PC's
    Everything depends on the router ..
    If the router offers vlan.. then you can set the airport to a different vlan than the Work computers and it will work fine.. But your setup currently is such that wireless clients behind the airport even if they get a different IP address range would still be able to access the work PC's.
    Another possible method is to use secondary IP address in the router.. this is same idea as vlan really but some routers offer IP alias.. or secondary IP.. it has a number of names.. This would not fully protect the computers on the main IP address range but via firewall in the computers will effectively do so. It would be important to make sure the local firewall is setup and running.

  • How many second can Oracle TNS endure on the network unstability?

    Hi there,
    Recently the network at our office is very unstable. So the problem between WAS server(WAS1, WAS2) and Oracle DB server(DB).
    Sometimes the connection from WAS server to DB server is broken suddenly. In other case the connection is still alive after network unstability.
    Is there any TIMEOUT to achieve the disconnection? How many second can Oracle TNS endure on the network unstability?
    Best regards,

    Hi,
    Try setting SQLNET.OUTBOUND_CONNECT_TIMEOUT in your SQLNET.ORA file to a higher value.
    http://docs.oracle.com/cd/B28359_01/network.111/b28317/sqlnet.htm#BIIFGFHI
    Salman

  • Problem with define the alfa network usb adapter

    Hi all,
    I found the file that defines the alpha, but did not know how to define.
    the ReadMe file explain the process of installation and this is the file for operating instructions.
    Release Date: 2006-02-09, ver 1.2
    RTL8187 Linux driver version 1.2
       --This driver supports RealTek RTL8187 Wireless LAN driver for
         Fedora Core 2/3/4/5, Debian 3.1, Mandrake 10.2/Mandriva 2006,
         SUSE 9.3/10.1/10.2, Gentoo 3.1, etc.
       - Support Client mode for either infrastructure or adhoc mode
       - Support WEP and WPAPSK connection
    < Component >
    The driver is composed of several parts:
        1. Module source code
          stack.tar.gz
          drv.tar.gz
        2. Script ot build the modules
          makedrv
        3. Script to load/unload modules
          wlan0up
          wlan0down
        4. Script and configuration for DHCP
           wlan0dhcp
          ifcfg-wlan0
        4. Supplicant source code:
          wpa_supplicant-0.4.9.tar.gz
        5. Example of supplicant configuration file:
          wpa1.conf
    < Installation >
    Runing the scripts can finish all operations of building up modules
    from the source code and start the nic.
        1. Build up the drivers from the source code
          ./makedrv
        2. load the driver module to kernel and start up nic
          ./wlan0up
    < Set wireless lan MIBs >
    This driver uses Wireless Extension as an interface allowing you to set
    Wireless LAN specific parameters.
    Current driver supports "iwlist" to show the device status of nic
            iwlist wlan0 [parameters]
    where
            parameter explaination          [parameters]   
            Show available chan and freq    freq / channel 
            Show and Scan BSS and IBSS     scan[ning]         
            Show supported bit-rate         rate / bit[rate]       
            Show Power Management mode      power           
    For example:
        iwlist wlan0 channel
        iwlist wlan0 scan
        iwlist wlan0 rate
        iwlist wlan0 power
    Driver also supports "iwconfig", manipulate driver private ioctls, to set
    MIBs.
        iwconfig wlan0 [parameters] [val]
    where
        parameter explaination      [parameters]        [val] constraints
            Connect to AP by address    ap                  [mac_addr]
            Set the essid, join (I)BSS  essid                 [essid]
            Set operation mode          mode                {Managed|Ad-hoc}
            Set keys and security mode  key/enc[ryption]    {N|open|restricted|off}
    For example:
        iwconfig wlan0 ap XX:XX:XX:XX:XX:XX
        iwconfig wlan0 essid "ap_name"
        iwconfig wlan0 mode Ad-hoc
        iwconfig wlan0 mode essid "name" mode Ad-hoc
        iwconfig wlan0 key 0123456789 [2] open
        iwconfig wlan0 key off
        iwconfig wlan0 key restricted [3] 0123456789
    < Getting IP address >
    After start up the nic, the network needs to obtain an IP address before
    transmit/receive data.
    This can be done by setting the static IP via "ifconfig wlan0 IP_ADDRESS"
    command, or using DHCP.
    If using DHCP, setting steps is as below:
        (1)connect to an AP via "iwconfig" settings
            iwconfig wlan0 essid [name]    or
            iwconfig wlan0 ap XX:XX:XX:XX:XX:XX
        (2)run the script which run the dhclient
            ./wlan0dhcp
               or
            dhcpcd wlan0
                      (Some network admins require that you use the
                      hostname and domainname provided by the DHCP server.
                      In that case, use
            dhcpcd -HD wlan0)
    < WPAPSK >
    WPA_SUPPLICANT help the network to communicate under the protection of WPAPSK
    mechanism
        (1)Unpack source code of WPA supplicant:
          tar -zxvf wpa_supplicant-0.4.9.tar.gz
          cd wpa_supplicant-0.4.9
        (2)Create .config file:
          cp defconfig .config
        (3)Edit .config file, uncomment the following line:
          #CONFIG_DRIVER_IPW=y.
        (4)Build WPA supplicant:
          make
        If make error for lack of <include/md5.h>, install the openssl lib(two ways):
         1. Install the openssl lib from corresponding installation disc:
            Fedora Core 2/3/4/5(openssl-0.9.71x-xx), Mandrake10.2/Mandriva10.2(openssl-0.9.7x-xmdk),
            Debian 3.1(libssl-dev), Suse 9.3/10.0/10.1(openssl_devl), Gentoo(dev-libs/openssl), etc.
         2. Download the openssl open source package from OpenSSL: The Open Source toolkit for SSL/TLS, build and install it.
        (5)Edit wpa_supplicant.conf to set up SSID and its passphrase.
          For example, the following setting in "wpa1.conf" means SSID
              to join is "BufAG54_Ch6" and its passphrase is "87654321".
          network={
                ssid="BufAG54_Ch6"
                proto=WPA
                key_mgmt=WPA-PSK
                pairwise=CCMP TKIP
                group=CCMP TKIP WEP104 WEP40
                psk="87654321"
                priority=2
        (6)Execute WPA supplicant (Assume 8187 and related modules had been
               loaded):
          ./wpa_supplicant -D ipw -c wpa1.conf -i wlan0 &I execute the makdrv script after log with root user but an error appear
       bash:./makedrv: permission denied  and this the script code
    #!/bin/sh
    tar -zxvf stack.tar.gz
    tar -zxvf drv.tar.gz
    cd ieee80211
    make clean
    make
    cd .../rtl8187
    make clean
    make
    cd...  Regards

    chmod 700 makedrv

  • FSG - How to define a 'static' period

    hello:
    we are using Oracle Financials FSG and i need to setup a column set that has 12 STATIC months - for each month of our fiscal year. that way we can do comparisons to the same month in the prior fiscal year.
    in other words, i want to define "January 2008", "February 2008", etc... and have them display the totals for that month (PTD) balances, along side "January 2007", "February 2007", etc. balances, with variance.
    everything in the column set seems tied to the POI (Period-of-Interest) which varies depending what period you use when you run the report. this means it's variable and i would like it fixed.
    is there a way to do this?
    thanks

    Hi ,
    If you are in R11i , it's not but possible in R12 as per the below notes . Please check
    Can You Use Constant Periods in FSG Reports? [ID 1051615.6]
    R12 How to Use CPOI Token in FSG [ID 463505.1]
    Regards
    Muthu

  • Oracle Online Backup through EMC Networker - RMAN Script

    Hi,
    For taking online oracle backup through EMC Networker, we configure the RMAN script to connect to the target database, create the media channels, backup format etc. The password for the sys or rman user entered in the RMAN script is in clear-text format.
    Due to security reasons, I don't want the passwords to be entered in the RMAN script. Is there any option for configuring RMAN script without mentioning the username/password to connect to the target database ?
    Thanks & Regards,
    Shreejesh.

    When you have to connect remotely to RMAN, you cannot hide the password, you can only define very restricted access for the script itself. Remote OS authentication will not work, because the target db user needs SYSDBA privilege, which cannot be granted to an externally identified user.
    Werner

  • Defining a few network interfaces?

    One thing that in Gentoo was simpler... or better documented. What's the simplest/recommended way of defining two interfaces (let's say: `eth0' and `eth1'), assigning each one a set of static routes and setting forward?
    Gentoo's `/etc/conf.d/network' was self explanatory.
    In Arch it seems to be completely undocumented.
    I guess I need: `net.ipv4.ip_forward' sysctl for forwarding.
    How about defining interfaces and routes?
    Does `/etc/rc.conf' allow defining a few interfaces?
    Is any simpler way than using netcfg? Is there any comprehensive documentation (not a set of examples) on all `/etc/network.d/*' file options?
    How can I automatically set two addresses for `eth0'?
    Best regards,
    /m

    Have a look at this thread. It contains some good examples on how to set it up (in essence you just add ip commands in your netcfg profile).
    Documentation wise, there's the netcfg and ip manpage. But I agree that perhaps the wiki could use some expanding on the subject. I'll see if I can add some info to the netcfg wiki page about this (won't be getting around to that until tonight or tomorrow though).

Maybe you are looking for

  • How to install windows 8?

    i am having mbp 13 inch Mac OS X Lion 10.7.5 (11G63).i want to install windows 8.but i dont want to lose my data which is about 350 gb.can anyone tell me step by step process to install windows 8.

  • Can we define a function in a sub process?

    Hi , I want to know whether we can define a function in a sub-process ? coz I see only notifications defined in the sub_process in seeded oracle workflows . also highlight if we are the running the workflow from developer studio do we need call the m

  • Apple TV usb port

    Set up new Airport router with new name and now Apple TV will not reset.  Just keeps cycling for date and time settings.  Trying reset with remote does not work.  Any way to restore to factory settings?

  • Photoshop Album SE won't open, won't work

    I have downloaded and installed several times. The license comes up and I accept. Then Photoshop Album SE logo comes onscreen but it never initializes or opens. Just sits there. I go to CTRL-ALT-DEL and see that it is "Not responding," so have to End

  • Multimaster authentication

    Hello, I had one directory server and then I installed a second server in a multi-master (with replication) configuration. I employed the Java DSCC to install the second server and copied the suffix from the initial server. Then I add the initial ser