Control Network Services

Hello
how can i control which network service to run at startup , please in detail . how to enable telnet to the system . how to restart all of the network services while the system is running ?

Try going through this url:
http://www.sun.com/bigadmin/features/articles/littleAdmin.html

Similar Messages

  • ASA 1000v controlled by Prime Network Services Controller

    I have a problem with a ASA 1000v which is controlled by the Prime Network Services Controller. I made a Policy for one port-profile which a server is connected. I configured nat and I am able to reach hosts on the Outside Network.
    Somehow I would like to limit the traffic to certain ports. So I made a ACL which looks like this
    I would guess that this give me a ACL which permits only SSH to 192.168.1.1. But instead it gives me a ip 192.168.2.2 192.168.1.1 ACL on the ASA.
    Has anybody a clou on how to do this?

    I found the answer. The ACL must look like this then it will work :)

  • Unified CCX serviceability - Control Center - Network Services

    Hello
    Troubleshooting some Partial service issue: I cannot find any information on Cisco site that will tell me what the S means on the Control Center - Network Services page for CCX serviceability. Could anyone please provide the documentation that explains these letter notations ?

    Hello-
    I'm assuming you're running 2 UCCX servers as an HA cluster. If so, the "S" next to the service means it is asking as the secondary/slave node, and the other server should have an "M" next to the service indicating it is currently the master/primary node. 

  • Deployment issue - Login failed for user 'NT AUTHORITY\NETWORK SERVICE'

    I am attempting to deploy a site from my development PC to my server. I have no issues running the site on the server using VS2010 Express Web in debug. All page queries are working within the debugger. The connection strings are identical between the PC
    and Server, except the host name.
    connectionString
    ="Data
    Source=SOCIALSERVER;Initial Catalog=Intake_be;Integrated Security=True"
    However, when using the site normally via IIS, the pages containing data access are failing with a permissions problem. The non-data access pages render normally.
    Login failed for user 'NT AUTHORITY\NETWORK SERVICE'
    Looking at the SQL2005 instance via SQL Management Studio, I see security folder with Logins under the Server. NTA\NS is listed as a user login. But, I also see similar folders under each
    of 3 databases. NTA\NS is not listed as a login specific to my target dB.
    My site is for internal (intranet) use only. There is no internet access into my IIS. This is my first deployment into production. I think I only need Windows Authentication but I lack the experience to make a good decision. My goal is to allow domain users
    to access pages that produce read only data. But, I also need controlled access to pages that can modify data. I used the native winform template for ASP.NET 4, which includes some roles based security.
    How do I grant permissions for internal users on the pages that access SQL data? How does that security model work with the native roles based security? i.e.
    add
    name="AspNetSqlMembershipProvider"type="System.Web.Security.SqlMembershipProvider"connectionStringName="ApplicationServices"...
    etc.
    Thanks for your time and patience on this Deployment 101 type issue.
    Kurt

    hi,
    You receive either of these error messages specifically when you use integrated security.
    To resolve you can use one of below.
    Method 1: Programmatically change the security context of the ASP.NET worker process to a user who has the correct SQL Server permissions.
    Method 2: Change the default configuration of ASP.NET so that the ASP.NET worker process starts and runs under the context of a user who has the correct permissions in SQL Server.
    Method 3: Grant the correct permissions in SQL Server so that the ASPNET account (or NetworkService account, for an application that runs on IIS 6.0) has the appropriate access to the required resources.(Go to the Computer Management >> Local User and
    Groups >> Groups >> Right Click and go to properties on IIS_IUSRS >> Add appropriate user.
    Thanx, Mark as answered if you are ok ..

  • Enabling Network Services not working PLEASE HELP

    Hello,
    I created a virtual machine with the Oracle_Developer_Day.ova file downloaded from oracle page in order to test the application express tool.
    I´m trying to ad a webservice reference but getting the error:
    ORA-29273: HTTP request failed ORA-06512: at "SYS.UTL_HTTP", line 1130 ORA-24247: network access denied by access control list (ACL)
    I researched and find out that oracle 11g does not have network services enabled so you have to enable them with the following script:
    DECLARE
    ACL_PATH VARCHAR2(4000);
    ACL_ID RAW(16);
    BEGIN
    -- Look for the ACL currently assigned to '*' and give APEX_030200
    -- the "connect" privilege if APEX_030200 does not have the privilege yet.
    SELECT ACL INTO ACL_PATH FROM DBA_NETWORK_ACLS
    WHERE HOST = '*' AND LOWER_PORT IS NULL AND UPPER_PORT IS NULL;
    -- Before checking the privilege, ensure that the ACL is valid
    -- (for example, does not contain stale references to dropped users).
    -- If it does, the following exception will be raised:
    -- ORA-44416: Invalid ACL: Unresolved principal 'ADMIN'
    -- ORA-06512: at "XDB.DBMS_XDBZ", line ...
    SELECT SYS_OP_R2O(extractValue(P.RES, '/Resource/XMLRef')) INTO ACL_ID
    FROM XDB.XDB$ACL A, PATH_VIEW P
    WHERE extractValue(P.RES, '/Resource/XMLRef') = REF(A) AND
    EQUALS_PATH(P.RES, ACL_PATH) = 1;
    DBMS_XDBZ.ValidateACL(ACL_ID);
    IF DBMS_NETWORK_ACL_ADMIN.CHECK_PRIVILEGE(ACL_PATH, 'HR',
    'connect') IS NULL THEN
    DBMS_NETWORK_ACL_ADMIN.ADD_PRIVILEGE(ACL_PATH,
    'HR', TRUE, 'connect');
    END IF;
    EXCEPTION
    -- When no ACL has been assigned to '*'.
    WHEN NO_DATA_FOUND THEN
    DBMS_NETWORK_ACL_ADMIN.CREATE_ACL('power_users.xml',
    'ACL that lets power users to connect to everywhere',
    'HR', TRUE, 'connect');
    DBMS_NETWORK_ACL_ADMIN.ASSIGN_ACL('power_users.xml','*');
    END;
    COMMIT;
    ***Note: I have a workspace called HR and a user called HR.
    I run the script and everything works fine but when I try to add the webservice reference I get the same error.
    I don´t know what to do and my time to fixing this problem is ending so please if someone can help me I would really appreciate it.
    THanks in advance

    Hi Luis,
    You will find the script for the relevant releases in the respective installation guides of their releases.
    Here is the script for Oracle APEX 4.1 and its sub-version releases:
    DECLARE
      ACL_PATH  VARCHAR2(4000);
    BEGIN
      -- Look for the ACL currently assigned to '*' and give APEX_040100
      -- the "connect" privilege if APEX_040100 does not have the privilege yet.
      SELECT ACL INTO ACL_PATH FROM DBA_NETWORK_ACLS
       WHERE HOST = '*' AND LOWER_PORT IS NULL AND UPPER_PORT IS NULL;
      IF DBMS_NETWORK_ACL_ADMIN.CHECK_PRIVILEGE(ACL_PATH, 'APEX_040100',
         'connect') IS NULL THEN
          DBMS_NETWORK_ACL_ADMIN.ADD_PRIVILEGE(ACL_PATH,
         'APEX_040100', TRUE, 'connect');
      END IF;
    EXCEPTION
      -- When no ACL has been assigned to '*'.
      WHEN NO_DATA_FOUND THEN
      DBMS_NETWORK_ACL_ADMIN.CREATE_ACL('power_users.xml',
        'ACL that lets power users to connect to everywhere',
        'APEX_040100', TRUE, 'connect');
      DBMS_NETWORK_ACL_ADMIN.ASSIGN_ACL('power_users.xml','*');
    END;
    COMMIT;
    Refer : http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21673/otn_install.htm#BEHGBHDF
    Here is the script for Oracle APEX 4.2 and its sub-version releases:
    DECLARE
      ACL_PATH  VARCHAR2(4000);
    BEGIN
      -- Look for the ACL currently assigned to '*' and give APEX_040200
      -- the "connect" privilege if APEX_040200 does not have the privilege yet.
      SELECT ACL INTO ACL_PATH FROM DBA_NETWORK_ACLS
       WHERE HOST = '*' AND LOWER_PORT IS NULL AND UPPER_PORT IS NULL;
      IF DBMS_NETWORK_ACL_ADMIN.CHECK_PRIVILEGE(ACL_PATH, 'APEX_040200',
         'connect') IS NULL THEN
          DBMS_NETWORK_ACL_ADMIN.ADD_PRIVILEGE(ACL_PATH,
         'APEX_040200', TRUE, 'connect');
      END IF;
    EXCEPTION
      -- When no ACL has been assigned to '*'.
      WHEN NO_DATA_FOUND THEN
      DBMS_NETWORK_ACL_ADMIN.CREATE_ACL('power_users.xml',
        'ACL that lets power users to connect to everywhere',
        'APEX_040200', TRUE, 'connect');
      DBMS_NETWORK_ACL_ADMIN.ASSIGN_ACL('power_users.xml','*');
    END;
    COMMIT;Refer: http://docs.oracle.com/cd/E37097_01/doc/install.42/e35123/otn_install.htm#BEHGBHDF
    Hope it Helps!
    Regards,
    Kiran

  • Wi Fi disappeared from my network services. Now, Wi Fi unavailable on my Mac.

    I am using a Mac Pro (early 2009 Model) OS X 10.10.2, 2.93 GHz, 8GB memory.
    About a week ago, my Wi Fi suddenly disappeared from my Network Services. I cannot access any Wi Fi network because the Icon or a Wi Fi link does not show up anywhere. I tried the diagnostic test but that did not work. I re-booted my computer, I re-installed Yosemite and did a software update and my Wi Fi still did not show up in the network services.
    Any help in reconnecting my Wi Fi services will be greatly appreciated.
    Skel.

    Open the Network pane in System Preferences. A list of available network services appears on the left. If Wi-Fi is in the list, select it, then from the popup menu labeled with a gear icon at the bottom of the list, select
              Make Service Active
    Click Apply.
    If Wi-Fi is not in the service list, click the plus-sign button at the bottom of the list, and then select Wi-Fi from the  Interface menu in the sheet that drops down. Click Create, then Apply.
    If there is a closed padlock icon in the lower left corner of the preference pane, click it and enter your administrator password to unlock the settings.
    If the above steps don't solve the problem, continue.
    Triple-click anywhere in the line below on this page to select it:
    /Library/Preferences/SystemConfiguration/com.apple.airport.preferences.plist
    Right-click or control-click the line and select
             Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with "com.apple.airport.preferences.plist" selected. Move the selected item to the Trash. You may be prompted for your administrator password. Restart the computer and recreate your settings for Wi-Fi in the Network preference pane.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • DB Control 11g service in Win does not start....

    Hi ,
    When i try to start the DB Control 11g service in Windows XP , it fails displaying :
    The OracleDBConsoleoracle11g service terminated with service-specific error 2 (0x2).Is there something i can do except for trying to drop the EM repository and recreate it manually....?????
    Thanks....
    Sim

    Hi,
    The problem is that there is a problem in the connection via the OracleNet.... However , i can connect to the db using:
    1)oracle tools of 11g (sql developer,sql plus)
    2)oracle tools of 10g (DevSuite10g , sqlplus 10g)
    Here is a portion of this trace file....
    2007-12-21 12:08:09,093 [OmsServiceDriver thread] WARN  jdbc.ConnectionCache _getConnection.353 - Got a fatal exeption when getting a connection; Error code = 17002; Cleaning up cache and retrying
    2007-12-21 12:08:10,093 [OmsServiceDriver thread] ERROR conn.ConnectionService verifyRepositoryEx.818 - Invalid Connection Pool. ERROR = Εξαίρεση ΕΕ: The Network Adapter could not establish the connection
    2007-12-21 12:08:43,093 [OmsServiceDriver thread] WARN  jdbc.ConnectionCache _getConnection.352 - Εξαίρεση ΕΕ: The Network Adapter could not establish the connection
    java.sql.SQLException: Εξαίρεση ΕΕ: The Network Adapter could not establish the connection
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:146)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:255)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:390)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:519)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:167)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:35)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:816)
         at oracle.jdbc.pool.OracleDataSource.getPhysicalConnection(OracleDataSource.java:325)
         at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:235)
         at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPhysicalConnection(OracleConnectionPoolDataSource.java:157)
         at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPooledConnection(OracleConnectionPoolDataSource.java:94)
         at oracle.jdbc.pool.OracleImplicitConnectionCache.makeCacheConnection(OracleImplicitConnectionCache.java:1702)
         at oracle.jdbc.pool.OracleImplicitConnectionCache.getCacheConnection(OracleImplicitConnectionCache.java:575)
         at oracle.jdbc.pool.OracleImplicitConnectionCache.getConnection(OracleImplicitConnectionCache.java:435)
         at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:432)
         at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:397)
         at oracle.sysman.util.jdbc.ConnectionCache._getConnection(ConnectionCache.java:336)
         at oracle.sysman.util.jdbc.ConnectionCache._getConnection(ConnectionCache.java:322)
         at oracle.sysman.util.jdbc.ConnectionCache.getUnwrappedConnection(ConnectionCache.java:575)
         at oracle.sysman.emSDK.svc.conn.FGAConnectionCache.getFGAConnection(FGAConnectionCache.java:207)
         at oracle.sysman.emSDK.svc.conn.ConnectionService.getPrivateConnection(ConnectionService.java:1063)
         at oracle.sysman.emSDK.svc.conn.ConnectionService.getRepositoryVersionAndMode(ConnectionService.java:698)
         at oracle.sysman.emSDK.svc.conn.ConnectionService.verifyRepositoryEx(ConnectionService.java:778)
         at oracle.sysman.emSDK.svc.conn.ConnectionService.verifyRepository(ConnectionService.java:835)
         at oracle.sysman.emSDK.svc.conn.ConnectionService.blockUntilValid(ConnectionService.java:860)
         at oracle.sysman.emdrep.failover.OMSHeartbeatRecorder.getMyId(OMSHeartbeatRecorder.java:185)
         at oracle.sysman.emdrep.failover.OMSHeartbeatRecorder.preTask(OMSHeartbeatRecorder.java:412)
         at oracle.sysman.emdrep.omsservice.OmsServiceDriver.run(OmsServiceDriver.java:146)
    2007-12-21 12:08:43,093 [OmsServiceDriver thread] WARN  jdbc.ConnectionCache _getConnection.353 - Got a fatal exeption when getting a connection; Error code = 17002; Cleaning up cache and retrying
    2007-12-21 12:08:44,093 [OmsServiceDriver thread] ERROR conn.ConnectionService verifyRepositoryEx.818 - Invalid Connection Pool. ERROR = Εξαίρεση ΕΕ: The Network Adapter could not establish the connectionThanks...
    Sim

  • Restrict AFP to use a certain network service?

    I'm working with a client who has two new (Early 2008) Mac Pro systems, and we'd like to set it up so that internet is accessed over one slower connection (100Base-T), and really large video files are shared via another connection, like Gigabit Ethernet.
    Accordingly, is there any way to restrict through which of the networks services AFP is offered and requested? We obviously don't want the video files to try and transfer over the slower network, nor do we want the office-wide internet access clogging up the data-transfer gigabit LAN.
    We have a small DSL router that will be parsing out the internet LAN, and have a separate Gigabit switch in place to connect to the second ethernet port on both Mac Pros (which will soon be extended by another few machines, which is why the switch and not just direct connection). I currently have the internet-accessible LAN on the 192.168.1.x subnet, and the video data transfer LAN on 10.1.1.x.
    All that's left is to configure AFP service and requests to only go out over the 10.1.1.x LAN, but I'm having a bit of trouble sussing that out. Any pointers you might have would be most appreciated. Thanks!
    Cheers,
    MB

    It'll be available on any interface.
    The exception to this (for any protocol) is when you have a firewalled interface. then the rules on that particular interfaces firewall will dictate what is and isn't available on that interface. OSX however does not allow such granular control of the inbuilt firewall, so in this case it's on or off.
    Regardless of this, it is still route based. If you had a protocol blocked on your 10.x.x.x network and enabled on your 192.168.x.x network, and attempted to connect to it, you can still only connect to it with traffic destined for the 192.168.x.x network. Blocking it on one network does not force traffic to try the other network. Everything is still dependent on following IP routes.
    One thing of note is whether you're using a name to connect to the other machine or an IP address. Given that this is a small network and DNS is likely only on your router, trying to connect via machine name could be hit and miss. Try it out with IP address only to test it out and see if you get consistent results.

  • Waiting for network services...

    My ATV2 is online, it connected to my network, and all the movie thumbnails and such are displayed. It won't connect to the iTunes store, says that the Apple ID or password aren't recognized. Gets stuck on "Waiting for network services..." on Netflix. When attempting a restore downloads "the latest update" and looks like it's doing what it should but then displays "The update was not successful." Resets don't help, as it gets stuck on the "Waiting for network services..." Anyone having similar problems?

    I had the same problem. I just wanted to stream content from Netflix for starters, no bothering with iTunes on a PC, but the aTV2 would be stuck "Waiting for network services". Checking my settings and my router reflected a good WiFi connection, DHCP address assigned, etc. Internet radio worked fine, as did photo screen saver from FlickR.
    Attempting to log in to iTunes gave an incorrect password error -- a lamentably bad error since the password was correct.
    No joy on Netflix login.
    No joy on YouTube. Which is puzzling since port 80 is open. (I wonder if the aTV2 is calling home to Apple even if you are just using Netflix or YouTube.)
    All of this is a major annoyance as you have to keep entering your accounts and passwords from scratch over and over with the silly remote control and alphanumeric entry control.
    I suspected AppleTV was trying to connect to its services on the internet on some ports my router firewall was blocking, but there is no discoverable, comprehensive, or accurate Apple documentation to indicate what ports those are. I tried opening TCP:3689 with no improvement.
    As a last try, I opened every outbound port for the aTV2. (That is not going to be acceptable in the long term. We run a tight network security ship here.) It still didn't work. "Waiting for network services...". Hmph! I powered cycled the aTV2. After it rebooted, it works fine with Netflix and Youtube. No "Waiting..."
    It is lamentable that aTV2 setup and/or network test doesn't report what ports it is failing to connect on. Bad bad OOBE Apple! XBOX 360 for example gives much more useful network config assistance.

  • What does Network Service Inactive mean?

    What does Network Service Inactive mean?

    Back up all data before proceeding.
    Open the Network pane in System Preferences. A list of available network services appears on the left. If Wi-Fi is in the list, select it, then from the popup menu labeled with a gear icon at the bottom of the list, select
              Make Service Active
    Click Apply.
    If Wi-Fi is not in the service list, click the plus-sign button at the bottom of the list, and then select Wi-Fi from the  Interface menu in the sheet that drops down. Click Create, then Apply.
    If there is a closed padlock icon in the lower left corner of the preference pane, click it and enter your administrator password to unlock the settings.
    If the above steps don't solve the problem, continue.
    Triple-click anywhere in the line below on this page to select it:
    /Library/Preferences/SystemConfiguration/com.apple.airport.preferences.plist
    Right-click or control-click the line and select
             Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with "com.apple.airport.preferences.plist" selected. Move the selected item to the Trash. You may be prompted for your administrator password. Restart the computer and recreate your settings for Wi-Fi in the Network preference pane.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • "Waiting for network services..." forever! Then, wont' accept WEP password!

    Anyone having this issue. One of my two new Apple TV 2s is doing this...was working fine for weeks and then bang!

    I had the same problem. I just wanted to stream content from Netflix for starters, no bothering with iTunes on a PC, but the aTV2 would be stuck "Waiting for network services". Checking my settings and my router reflected a good WiFi connection, DHCP address assigned, etc. Internet radio worked fine, as did photo screen saver from FlickR.
    Attempting to log in to iTunes gave an incorrect password error -- a lamentably bad error since the password was correct.
    No joy on Netflix login.
    No joy on YouTube. Which is puzzling since port 80 is open. (I wonder if the aTV2 is calling home to Apple even if you are just using Netflix or YouTube.)
    All of this is a major annoyance as you have to keep entering your accounts and passwords from scratch over and over with the silly remote control and alphanumeric entry control.
    I suspected AppleTV was trying to connect to its services on the internet on some ports my router firewall was blocking, but there is no discoverable, comprehensive, or accurate Apple documentation to indicate what ports those are. I tried opening TCP:3689 with no improvement.
    As a last try, I opened every outbound port for the aTV2. (That is not going to be acceptable in the long term. We run a tight network security ship here.) It still didn't work. "Waiting for network services...". Hmph! I powered cycled the aTV2. After it rebooted, it works fine with Netflix and Youtube. No "Waiting..."
    It is lamentable that aTV2 setup and/or network test doesn't report what ports it is failing to connect on. Bad bad OOBE Apple! XBOX 360 for example gives much more useful network config assistance.

  • CUCM network services missing after restore

    Hi
    I have a cucm 8.0.3 appliance, i'm migrating to vmware but when i restore the backup in the vmware i lost like 20 services (network services), how can i fix it?
    Thanks

    Hi Alejandro,
    It sure sounds like this bug;
    CSCtl82213 Bug Details
    Bug #4 of 6 | < Previous | Next >
    CUCM Serviceability Network Services page missing services on VMware
    Symptom:
    Under the CUCM Serviceability webpage, Control Center - Network Services, some
    or all services are not displayed so they cannot be started, stopped, or restarted.
    Conditions:
    CUCM 8.x running on a VMware server.
    Workaround:
    The workaround for this defect requires TAC to access your server with a remote
    support account.  Open a TAC SR and reference this defect to get it fixed.
    Status
    Fixed 
    Severity
    3 - moderate
    Last Modified
    In Last 2 weeks  
    Product
    Cisco Unified Communications Manager (CallManager)    
    Technology
    1st Found-In
    8.0
    8.5(1)
    8.5(1.10000.13)  
    Fixed-In
    8.6(0.98000.19)
    8.6(0.98000.56)
    8.6(0.99981.2)
    8.6(1.10000.1)
    8.6(1.96000.51)
    8.6(1.96000.1)
    8.6(0.95230.2)
    8.6(1.10000.43)
    8.5(1.12024.1)
    1.0(0.98000.42)
    8.6(1.95040.1)
    8.6(1.10001.1)
    8.6(1.95190.40)
    8.6(1.97011.1)
    8.6(1.97011.2)
    8.6(1.99989.1)
    9.0(0.95010.1)
    8.6(0.95180.9)
    8.6(1.99986.1)
    8.5(1.12900.6)
    8.6(1.95020.1)
    8.6(1.95020.58)
    Cheers!
    Rob
    "Talk about a dream
    Try to make it real" 
    - Springsteen

  • I want to use Back to my mac. When I try to turn it on, it says "Back to My Mac may be slow because more than one device on your network is providing network services.   Turn off NAT and DHCP on one of the devices and try again." How do I fix this?

    Not sure if I am doing this right. This is my first time in the support community.
    I imagine what I put in my heading was supposed to go in here.
    I want to use Back to my mac. When I try to turn it on, it says "Back to my mac may be slow because more than one device on your network is providing network services. Turn off NAT and DHCP on one of the devices and try again. See the documentation that came with your device for information about turning off network services"
    Does anyone know how I do this? I contacted my ISP (Telus in Canada) and they did not know anything (not that they usually do).

    Why do ISPs insist upon making things so difficult for their customers?
    If you cannot get them to understand that you would prefer to use your own router over their piece of cheap junk, perhaps the information in the following will be useful:
    http://keithbalomben.wordpress.com/2012/03/29/telus-actiontec-v1000h-hacks-and-i nformation/
    Scroll down to DHCP Settings
    You will need to log in with proper "technician" credentials. They are provided in the above link as
    Username: tech
    Password: t3lu5tv
    ... but these may or may not work. Try it, and if you cannot get anywhere at least now you know what to ask Telus to do in return for your business.

  • Remote access and network services problem

    I have a Mac Pro with two IP configs:
    Ethernet 1: 69.##.##.## /255.255.255.248 [hidden for public forum security]
    Ethernet 2: 10.0.0.20/255.255.255.0
    My primary needs:
    Able to remotely access the Mac via Remote Desktop using the public IP. Local LAN connectivity using 10.##.##.##.
    Setup:
    I have a 10 public IP address from my ISP and using one of the 10 now. Everything pings OK.
    Question:
    How can I customize the network service so that I can select the Ethernet 1 or Ethernet 2 port to use? So far it forces me select Ethernet 1 for all of the services selected. I'd like to use FTP & Web Server & Remote Access on the Ethernet 2 (public). The rest is LAN. I notice that Appletalk is only allowable on a single IP.
    Quick experiment with the Internet sharing using Ethernet 2 (public) to Ethernet 1 failed to provide the desired forwarding result.
    Mac Pro   Mac OS X (10.4.9)  

    I think you need to go further into the settings and define FTP etc. to the specific Ethernet. There are also settings Automatic and where you define your connection. I have a 3 inch book that I will look at to see if they address it. I to plan to do something similar, but haven't got there yet.
    Michael

  • HT1178 I bought Time Capsule specifically to back up my computer at work. Only my computer. I completed the steps the best of my knowledge but I got the message, "This device & its network services will be temporarily unavailable. Are you sure you want to

    I bought Time Capsule specifically to back up my computer at work. Only my computer. There are many computers within my department. I completed the steps the best of my knowledge but was unsure of which option to click. I clicked "I want to create a new wireless network". At the onset the instructions said I needed to connect with an ethernet cable, which I did. But I have no desire to connect to the internet, print from it, or have others access. I did deselect guest options, and I did put in passwords. But at the end of the process I got the message, "This device & its network services will be temporarily unavailable. Are you sure you want to continue."
    I was worried this would shut me down and I wouldn't be able to continue to work. I don't necessarily need to connect wirelessly. It is connected via ethernet cable from machine to device.
    Can you advise me how to continue? Did I choose the wrong options?

    I bought an external hard drive called "Seagate Backup Plus" From the Apple store to back up everything on my computer and anything new on my computer. It came with Time Machine. The external hard drive disk had 1 or 2 Terabytes. Time Machine says "next backup: When disk is connected." "Oldest backup: July 2, 2014." & Also "Latest back July, 2."

Maybe you are looking for

  • OCR with HP Officejet Pro 8600 Plus e-All-in-One Printer - N911g

    Hello:  I have the "HP Officejet Pro 8600 Plus e-All-in-One Printer model N911g" and read in the manual that it comes with Optical Character Recognition (OCR) software.  I can't find any OCR software on the accompanying optial disk "HP Officejet pro

  • Is it legal to subscribe podcast from itunes US if i am not  american?

    i kind of saw a term that said :"The iTunes Service is available to you only in the United States, its territories, and possessions. You agree not to use or attempt to use the iTunes Service from outside these locations. Apple may use technologies to

  • How Do I Get Images to Preview with out Bitmapped & Rough Edges?

    Using InDesign CS (Mac) I think I read in the manual that vector, and bitmap files will look pixelated when viewed in InDesign. Is there any way to have my images (tifs, jpgs, vectors etc.) look smooth when previewing in Indesign. I can't get a good

  • HowTo mount the home dirs in the global zone to many zones?

    I tried it with loopback mounts. global zone /export/home is loopback mounted to /export/zones/zone1/root/export/home and to /export/zones/zone2/root/export/home with the zonecfg command. Now booting zone1 works, zone2 exits with zoneadm: zone 'zone2

  • Has anyone upgraded GRCPINW from V1000_731 to V1100_731?

    Hi Experts, The business would like to upgrade the current GRCPINW V1000_731 to V1100_731. Has anyone successfully upgraded this components? I have downloaded the media CD51046221, and see the upgrade and install files therein. But the saint tool doe