Debug privilege

Hello how can i get debug privilege in my windows 7 home edition. in fact, i am using my computer as an administrator but i have to face this error always.plz help me

Hello,
The TechNet Sandbox forum is designed for users to try out the new forums functionality. Please be respectful of others, and do not expect replies to questions asked here.
Since your post is off-topic, I am moving it to the
off topic forum.
Karl
When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
My Blog: Unlock PowerShell
My Book:
Windows PowerShell 2.0 Bible
My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

Similar Messages

  • Debug privilege - is it at object level or user level or both?

    Just want to know at what level Debug privilege can be granted? At object level or user-level or both?
    I'm under the impression that if an user say 'A' is given this privilege, then he can debug all the procedures/packages/objects in his schema . I guess it's like granting the privilege at user level.
    On the other hand when we say 'grant debug on proc_name to xyz' , it's at object level.
    Please check and correct my assumptions.

    in order to debug (i.e, activate dbms_debug) in a session you need:
    debug connect session
    in order to debug objects that you are not the owner you need:
    debug any procedure
    or
    grant debug on procedure from the user that own the pl/unit
    hope it helps,
    Amiel Davis

  • Can I revoke DEBUG Privilege ?

    In a database, We have a (customization) schema, say XYZ & Oracle APPS schema. The business logic are processed in XYZ then process (call) to Oracle side using API on XYZ schema, say create Oracle Order.
    The XYZ's API will call the package on APPS.
    My problem comes when debugging -
    When I process the code from XYZ schema, I will be able to see all steps until the program call APPS' package. My guess the APPS has set to not allow debug through its programs. Is there a way to revoke it (so I will be able to see what's happening)? Possible anything to be done from XYZ schema?
    Thank you for any idea!

    Any one?
    Thank you

  • How to debug in dedicated unit test client

    Hello,
    We have a setup where we do all development in client 100, but have a separate client for unit tests. Since this is the client holding relevant test data, we would like to debug in this client.
    How can I achieve this in Eclipse, do I need to create two projects (one for each client) and open the object twice, or is it possible to setup using debug configurations or something similar?
    Regards

    Hi Matthias,
    in Java you need OS privileges to debug Java code running on any Java application server (and additionally set up the Java VM in debug mode and stuff like that). And once you have OS privileges, you can of course debug all Java VM processes/threads on the machine, regardless which application context they are currently running for.
    In ABAP you do NOT need any kind of OS privileges in order to debug. All you need is a user in the system/client with debug privileges, which is big advantage in terms of privilege separation. ABAP debugging on customer systems for example, which is a quite normal thing, would be much harder to realize, if we require any kind of OS privileges.
    To cut a long story short:
    As a user is required with debugging privileges in any ABAP system/client for ABAP debugging, it is not possible to realize a remote debugging in ABAPinEclipse just by specifying SID/client of the remote ABAP system.
    So you need to logon to the ABAP system/client (and set breakpoints there) in order to debug. And as the system/client logon to the ABAP backend in ABAPinEclipse is conceptually linked to a project, you need to have an open project for those ABAP system/clients you want to debug in.
    Regards,
    Christoph Stoeck, ABAP Language

  • View defination privilege on Procedures by all the users

    Hello,
    I was looking for some query where i can view the defination or select the procedures of any schema
    for example we have procedures owned by ML schema, other users such as fft, fft_read etc wants to view the defination of the procedures or select privileges on the procedures owned by ML Schema.
    is there anything like grant select any procedure owned by any schema can view the procedures by all other schema's in the database.
    Thanks

    You can not grant select on a procedure;
    SQL> grant select on tsb.example_defaults to test01;
    grant select on tsb.example_defaults to test01
    ERROR at line 1:
    ORA-02225: only EXECUTE and DEBUG privileges are valid for procedures
    However, you can grant debug on the objects and then you will be able to see the definitions from ALL_SOURCE. Additionally they will still not be able to excute the code.
    SQL> select object_name from all_objects where object_type='PROCEDURE' and owner='TSB';
    OBJECT_NAME
    NEW_EXAMPLE
    EXAMPLE_DEFAULTS
    SQL> connect test01/password
    Connected.
    SQL>  select object_name from all_objects where object_type='PROCEDURE' and owner='TSB';
    no rows selected
    SQL> connect tsb
    Enter password:
    Connected.
    SQL> select 'GRANT DEBUG ON TSB.'||OBJECT_NAME||' TO TEST01;'  from all_objects where object_type='PROCEDURE' and owner='TSB';
    *'GRANTDEBUGONTSB.'||OBJECT_NAME||'TOTEST01;'*
    GRANT DEBUG ON TSB.NEW_EXAMPLE TO TEST01;
    GRANT DEBUG ON TSB.EXAMPLE_DEFAULTS TO TEST01;
    SQL> GRANT DEBUG ON TSB.NEW_EXAMPLE TO TEST01;
    Grant succeeded.
    SQL> GRANT DEBUG ON TSB.EXAMPLE_DEFAULTS TO TEST01;
    Grant succeeded.
    SQL> CONNECT test01/test01
    Connected.
    SQL>  select text from all_source where owner='TSB' order by name, line;
    TEXT
    procedure example_defaults
    *(n_1 in number :=5,*
    n_2 in number :=6,
    n_3 in number :=7)
    as
    begin
    dbms_output.put_line(n_1||n_2||n_3);
    end;
    procedure new_example
    *(n_1 in number :=8,*
    n_2 in number :=10)
    as begin
    dbms_output.put_line(n_1+n_2);
    end;
    *14 rows selected.*
    SQL> set serveroutput on
    SQL> exec tsb.example_defaults(1,2,3);
    BEGIN tsb.example_defaults(1,2,3); END;
    ERROR at line 1:
    ORA-06550: line 1, column 11:
    PLS-00904: insufficient privilege to access object TSB.EXAMPLE_DEFAULTS
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    Hope this helps.
    Regards
    Tim

  • HANA DB User for ABAP/ Privileges on Users- Attach Debugger

    Hi SAP HANA/ ABAP experts,
    I was trying to create an ABAP on HANA role for on HANA DB.
    role TestRoles::developer_role
    extends catalog role "ABAP_DEV", "ABAP_ADMIN"
    catalog sql object "_SYS_REPO"."GRANT_SCHEMA_PRIVILEGE_ON_ACTIVATED_CONTENT","_SYS_REPO"."GRANT_PRIVILEGE_ON_ACTIVATED_CONTENT": EXECUTE;
    catalog schema "SAPSND": SELECT, DEBUG;
    system privilege: CATALOG READ;
    I also would like to get the next in place: (for External Debugging AMDP on HANA). Does anyone know how to geht this into a role
    grant attachdebuggerto DEBUGUSER;
    Please refer to next OSS for more details: 1942471 - New Debug Privileges for SQLScript Debugger.
    Thanks in advance.
    Best Regards,
    Bart

    As of HANA SP9 the next is not required anymore for AMDP debugging.
    Anyway before SP9 it could be solved by logging on with ECC user (mostly SAP<SYSID>, but could also be named differntly), then create a new role with the ATTACH DEBUGGER (Tab Privileges on Users). And then include in repository role, refer to next example ROLE XYZ
    extends catalog role "ABAP_DEV", "ABAP_ADMIN", "ROLE XYZ"

  • Enabling the Debug Mode

    Hello!
    I can't enable the debug mode as descibed here http://help.sap.com/saphelp_nwce10/helpdata/en/45/e4fa02855c2e97e10000000a155369/frameset.htm.
    There isn't "Start Debug Session..." in the context menu.
    How can I enable the debug mode on the fly?
    Regards,
    Armin

    Your probably missing the oracle debug privileges then. I can never remember them off hand but its something like debug any procedure and connect any session that are needed

  • 2611xm Terminal Server + ACS + reauthentication when selecting menu options

    Hi,
    I've managed to setup ACS Authentication on my  2611xm router,
    after you login to the router I have a autocommand setup to run a menu.
    My problem is  when you select the option on the menu,
    You are then re prompted to reauthenicated against  the router again before connecting to the line,
    can any one tell me how  to stop this from happening.
    Thanks for your time and effort in advance, I  have enclosed a config below.
    DDRAS01#sh running-config
    Building  configuration...
    Current configuration : 6854 bytes
    ! Last  configuration change at 10:28:49 AEST Sun Feb 21 2010 by <removed>
    !  NVRAM config last updated at 19:25:53 AEST Sat Feb 20 2010 by  <removed>
    version 12.4
    service timestamps  debug datetime msec
    service timestamps log datetime msec
    service  password-encryption
    service linenumber
    service  sequence-numbers
    hostname DDRAS01
    boot-start-marker
    boot-end-marker
    security  authentication failure rate 3 log
    security passwords min-length 6
    logging  buffered 51200 informational
    logging rate-limit all 10000
    logging  console critical
    enable password 7 <removed>
    aaa  new-model
    aaa authentication login default group  tacacs+ local
    aaa authentication login if_needed local
    aaa  authentication enable default enable
    aaa authentication ppp  default local
    aaa authorization exec default group tacacs+ local  if-authenticated
    aaa accounting exec default start-stop group  tacacs+
    aaa accounting commands 15 default start-stop group  tacacs+
    aaa session-id common
    clock timezone AEST 10
    clock  summer-time AEST recurring last Sun Oct 2:00 last Sun Mar 3:00
    no  network-clock-participate slot 1
    no network-clock-participate wic  0
    ip cef
    ip domain list  <removed>
    ip domain list <removed>
    ip domain  name <removed>
    ip host dd-cr-01e 2033 172.16.1.1
    ip  host ddsws01 2034 172.16.1.1
    ip host ddsws04 2035 172.16.1.1
    ip  host ddce565 2040 172.16.1.1
    ip name-server <removed>
    ip  name-server <removed>
    username  netops privilege 15 password 7 <removed>
    ip  ssh source-interface FastEthernet0/0
    ip ssh logging events
    ip  ssh version 2
    interface Loopback0
    ip  address 172.16.1.1 255.255.255.255
    interface  FastEthernet0/0
    ip address <removed> 255.255.255.0
    speed 100
    full-duplex
    interface Serial0/0
    no  ip address
    shutdown
    interface BRI0/0
    no ip  address
    encapsulation hdlc
    shutdown
    interface  FastEthernet0/1
    no ip address
    shutdown
    duplex auto
    speed auto
    ip forward-protocol nd
    ip route 0.0.0.0  0.0.0.0 <removed>
    ip http server
    no ip http  secure-server
    ip tacacs source-interface FastEthernet0/0
    ip  radius source-interface FastEthernet0/0
    logging facility local6
    logging  <removed>
    snmp-server community <removed> RO
    snmp-server  community <removed> RW
    snmp-server location <removed>
    snmp-server  contact NetOps
    menu ddras01 title ^C
    Cisco  Terminal Server
    Select the number from the list below
    Use  'ctrl+shift+6' then 'x' to switch back to the menu
    ^C
    menu  ddras01 text 1 Connect to DD-CR-01
    menu ddras01 command 1 resume  dd-cr-01 /connect telnet dd-cr-01 2033
    menu ddras01 text 2 Connect  to DDSWS01
    menu ddras01 command 2 resume ddsws01 /connect telnet  ddsws01 2034
    menu ddras01 text 3 Connect to DDSWS04
    menu  ddras01 command 3 resume ddsws04 /connect telnet ddsws04 2035
    menu  ddras01 text 8 Connect to DDCE565
    menu ddras01 command 8 resume  ddce565 /connect telnet ddce565 2040
    menu ddras01 text 9 Exit
    menu  ddras01 command 9 menu-exit
    menu ddras01 clear-screen
    menu  ddras01 status-line
    menu ddras01 line-mode
    tacacs-server  host 10.2.0.50
    tacacs-server directed-request
    tacacs-server  key 7 <removed>
    control-plane
    privilege  exec level 15 write terminal
    privilege exec level 15 write
    privilege  exec level 1 ping
    privilege exec level 10 undebug ip icmp
    privilege  exec level 10 undebug ip
    privilege exec level 10 undebug all
    privilege  exec level 10 undebug
    privilege exec level 10 terminal monitor
    privilege  exec level 10 terminal
    privilege exec level 15 show  running-config
    privilege exec level 5 show configuration
    privilege  exec level 5 show
    privilege exec level 10 debug ip icmp
    privilege  exec level 10 debug ip
    privilege exec level 10 debug all
    privilege  exec level 10 debug
    privilege exec level 10 clear interface
    privilege  exec level 10 clear counters
    privilege exec level 10 clear
    line  con 0
    password 7 <removed>
    logging synchronous
    line  33 64
    no exec-banner
    exec-timeout 0 0
    no  activation-character
    no exec
    transport preferred telnet
    transport input all
    escape-character 27
    stopbits 1
    flowcontrol hardware
    line aux 0
    line vty 0 4
    password 7 <removed>
    logging synchronous
    autocommand  menu ddras01
    line vty 5 181
    password 7  <removed>
    logging synchronous
    autocommand  menu  ddras01
    ntp clock-period 17208487
    ntp source  FastEthernet0/0
    ntp server <removed>
    end

    Hi Jesse
    I have made the changes you recommended however i'm still getting prompted to reauthenticate each time I choose a menu entry,
    I have included a updated copy of the config, any help you can provide if greatly appreaciated.
    Thanks
    DDRAS01(config)#do sh runnin
    Building configuration...
    Current configuration : 7371 bytes
    ! Last configuration change at 17:55:22 AEST Sun Feb 21 2010 by david
    ! NVRAM config last updated at 11:07:30 AEST Sun Feb 21 2010 by david
    version 12.4
    service timestamps debug datetime msec
    service timestamps log datetime msec
    service password-encryption
    service linenumber
    service sequence-numbers
    hostname DDRAS01
    boot-start-marker
    boot-end-marker
    security authentication failure rate 3 log
    security passwords min-length 6
    logging buffered 51200 informational
    logging rate-limit all 10000
    logging console critical
    enable password 7
    aaa new-model
    aaa authentication login default group tacacs+ local
    aaa authentication login if_needed local
    aaa authentication login NOAUTH none
    aaa authentication enable default enable
    aaa authentication ppp default local
    aaa authorization exec default group tacacs+ local if-authenticated
    aaa authorization exec NOAUTH none
    aaa accounting exec default start-stop group tacacs+
    aaa accounting commands 15 default start-stop group tacacs+
    aaa session-id common
    clock timezone AEST 10
    clock summer-time AEST recurring last Sun Oct 2:00 last Sun Mar 3:00
    no network-clock-participate slot 1
    no network-clock-participate wic 0
    ip cef
    ip domain list
    ip domain list
    ip domain name
    ip host dd-cr-01 2033 172.16.1.1
    ip host ddsws01 2034 172.16.1.1
    ip host ddsws04 2035 172.16.1.1
    ip host ddce565 2040 172.16.1.1
    ip name-server
    ip name-server
    username netops privilege 15 password 7
    ip ssh source-interface FastEthernet0/0
    ip ssh logging events
    ip ssh version 2
    interface Loopback0
    ip address 172.16.1.1 255.255.255.255
    interface FastEthernet0/0
    ip address 255.255.255.0
    speed 100
    full-duplex
    interface Serial0/0
    no ip address
    shutdown
    interface BRI0/0
    no ip address
    encapsulation hdlc
    shutdown
    interface FastEthernet0/1
    no ip address
    shutdown
    duplex auto
    speed auto
    ip forward-protocol nd
    ip route 0.0.0.0 0.0.0.0
    ip http server
    no ip http secure-server
    ip tacacs source-interface FastEthernet0/0
    ip radius source-interface FastEthernet0/0
    logging facility local6
    logging
    snmp-server community RO
    snmp-server community RW
    snmp-server location
    snmp-server contact
    menu ddras01 title ^C
    Cisco Terminal Server
    Select the number from the list below
    Use 'ctrl+shift+6' then 'x' to switch back to the menu
    ^C
    menu ddras01 text 1 Connect to DD-CR-01
    menu ddras01 command 1 resume dd-cr-01 /connect telnet dd-cr-01 2033
    menu ddras01 text 2 Connect to DDSWS01
    menu ddras01 command 2 resume ddsws01 /connect telnet ddsws01 2034
    menu ddras01 text 3 Connect to DDSWS04
    menu ddras01 command 3 resume ddsws04 /connect telnet ddsws04 2035
    menu ddras01 text 8 Connect to DDCE565
    menu ddras01 command 8 resume ddce565 /connect telnet ddce565 2040
    menu ddras01 text a Clear connection to DD-CR-01
    menu ddras01 command a clear line 33
    menu ddras01 text b Clear connection to DDSWS01
    menu ddras01 command b clear line 34
    menu ddras01 text c Clear connection to DDSWS04
    menu ddras01 command c clear line 35
    menu ddras01 text h Clear connection to DDCE565
    menu ddras01 command h clear line 40
    menu ddras01 text x Exit Menu
    menu ddras01 command x menu-exit
    menu ddras01 text l Logout
    menu ddras01 command l logout
    menu ddras01 clear-screen
    menu ddras01 status-line
    tacacs-server host
    tacacs-server directed-request
    tacacs-server key 7
    control-plane
    privilege exec level 15 write terminal
    privilege exec level 15 write
    privilege exec level 1 ping
    privilege exec level 10 undebug ip icmp
    privilege exec level 10 undebug ip
    privilege exec level 10 undebug all
    privilege exec level 10 undebug
    privilege exec level 10 terminal monitor
    privilege exec level 10 terminal
    privilege exec level 15 show running-config
    privilege exec level 5 show configuration
    privilege exec level 5 show
    privilege exec level 10 debug ip icmp
    privilege exec level 10 debug ip
    privilege exec level 10 debug all
    privilege exec level 10 debug
    privilege exec level 10 clear interface
    privilege exec level 10 clear counters
    privilege exec level 10 clear
    line con 0
    password 7
    logging synchronous
    line 33 64
    no exec-banner
    exec-timeout 0 0
    no activation-character
    no exec
    transport preferred telnet
    transport input all
    escape-character 27
    stopbits 1
    flowcontrol hardware
    line aux 0
    line vty 0 4
    password 7
    logging synchronous
    autocommand  menu ddras01
    line vty 5 181
    password 7
    authorization exec NOAUTH
    logging synchronous
    login authentication NOAUTH
    autocommand  menu ddras01
    ntp clock-period 17208478
    ntp source FastEthernet0/0
    ntp server
    end

  • 2611xm Terminal Server + ACS + duplicate login when using menu options

    Hi,
    I'm trying to set up ACS on my 2611xm router, so far I have been able to do this, however when you login,
    I have a autocommand setup to run a menu. My problem is when you select the option on the menu it
    reauthenicated against the router again before connecting to the line, can any one tell me how to stop this from happening.
    Thanks for your time and effort in advance, I have enclosed a config below.
    DDRAS01#sh running-config
    Building configuration...
    Current configuration : 6854 bytes
    ! Last configuration change at 10:28:49 AEST Sun Feb 21 2010 by <removed>
    ! NVRAM config last updated at 19:25:53 AEST Sat Feb 20 2010 by <removed>
    version 12.4
    service timestamps debug datetime msec
    service timestamps log datetime msec
    service password-encryption
    service linenumber
    service sequence-numbers
    hostname DDRAS01
    boot-start-marker
    boot-end-marker
    security authentication failure rate 3 log
    security passwords min-length 6
    logging buffered 51200 informational
    logging rate-limit all 10000
    logging console critical
    enable password 7 <removed>
    aaa new-model
    aaa authentication login default group tacacs+ local
    aaa authentication login if_needed local
    aaa authentication enable default enable
    aaa authentication ppp default local
    aaa authorization exec default group tacacs+ local if-authenticated
    aaa accounting exec default start-stop group tacacs+
    aaa accounting commands 15 default start-stop group tacacs+
    aaa session-id common
    clock timezone AEST 10
    clock summer-time AEST recurring last Sun Oct 2:00 last Sun Mar 3:00
    no network-clock-participate slot 1
    no network-clock-participate wic 0
    ip cef
    ip domain list <removed>
    ip domain list <removed>
    ip domain name <removed>
    ip host dd-cr-01e 2033 172.16.1.1
    ip host ddsws01 2034 172.16.1.1
    ip host ddsws04 2035 172.16.1.1
    ip host ddce565 2040 172.16.1.1
    ip name-server <removed>
    ip name-server <removed>
    username netops privilege 15 password 7 <removed>
    ip ssh source-interface FastEthernet0/0
    ip ssh logging events
    ip ssh version 2
    interface Loopback0
    ip address 172.16.1.1 255.255.255.255
    interface FastEthernet0/0
    ip address <removed> 255.255.255.0
    speed 100
    full-duplex
    interface Serial0/0
    no ip address
    shutdown
    interface BRI0/0
    no ip address
    encapsulation hdlc
    shutdown
    interface FastEthernet0/1
    no ip address
    shutdown
    duplex auto
    speed auto
    ip forward-protocol nd
    ip route 0.0.0.0 0.0.0.0 <removed>
    ip http server
    no ip http secure-server
    ip tacacs source-interface FastEthernet0/0
    ip radius source-interface FastEthernet0/0
    logging facility local6
    logging <removed>
    snmp-server community <removed> RO
    snmp-server community <removed> RW
    snmp-server location <removed>
    snmp-server contact NetOps
    menu ddras01 title ^C
    Cisco Terminal Server
    Select the number from the list below
    Use 'ctrl+shift+6' then 'x' to switch back to the menu
    ^C
    menu ddras01 text 1 Connect to DD-CR-01
    menu ddras01 command 1 resume dd-cr-01 /connect telnet dd-cr-01 2033
    menu ddras01 text 2 Connect to DDSWS01
    menu ddras01 command 2 resume ddsws01 /connect telnet ddsws01 2034
    menu ddras01 text 3 Connect to DDSWS04
    menu ddras01 command 3 resume ddsws04 /connect telnet ddsws04 2035
    menu ddras01 text 8 Connect to DDCE565
    menu ddras01 command 8 resume ddce565 /connect telnet ddce565 2040
    menu ddras01 text 9 Exit
    menu ddras01 command 9 menu-exit
    menu ddras01 clear-screen
    menu ddras01 status-line
    menu ddras01 line-mode
    tacacs-server host 10.2.0.50
    tacacs-server directed-request
    tacacs-server key 7 <removed>
    control-plane
    privilege exec level 15 write terminal
    privilege exec level 15 write
    privilege exec level 1 ping
    privilege exec level 10 undebug ip icmp
    privilege exec level 10 undebug ip
    privilege exec level 10 undebug all
    privilege exec level 10 undebug
    privilege exec level 10 terminal monitor
    privilege exec level 10 terminal
    privilege exec level 15 show running-config
    privilege exec level 5 show configuration
    privilege exec level 5 show
    privilege exec level 10 debug ip icmp
    privilege exec level 10 debug ip
    privilege exec level 10 debug all
    privilege exec level 10 debug
    privilege exec level 10 clear interface
    privilege exec level 10 clear counters
    privilege exec level 10 clear
    line con 0
    password 7 <removed>
    logging synchronous
    line 33 64
    no exec-banner
    exec-timeout 0 0
    no activation-character
    no exec
    transport preferred telnet
    transport input all
    escape-character 27
    stopbits 1
    flowcontrol hardware
    line aux 0
    line vty 0 4
    password 7 <removed>
    logging synchronous
    autocommand  menu ddras01
    line vty 5 181
    password 7 <removed>
    logging synchronous
    autocommand  menu ddras01
    ntp clock-period 17208487
    ntp source FastEthernet0/0
    ntp server <removed>
    end

    Hi,
    I'm trying to set up ACS on my 2611xm router, so far I have been able to do this, however when you login,
    I have a autocommand setup to run a menu. My problem is when you select the option on the menu it
    reauthenicated against the router again before connecting to the line, can any one tell me how to stop this from happening.
    Thanks for your time and effort in advance, I have enclosed a config below.
    DDRAS01#sh running-config
    Building configuration...
    Current configuration : 6854 bytes
    ! Last configuration change at 10:28:49 AEST Sun Feb 21 2010 by <removed>
    ! NVRAM config last updated at 19:25:53 AEST Sat Feb 20 2010 by <removed>
    version 12.4
    service timestamps debug datetime msec
    service timestamps log datetime msec
    service password-encryption
    service linenumber
    service sequence-numbers
    hostname DDRAS01
    boot-start-marker
    boot-end-marker
    security authentication failure rate 3 log
    security passwords min-length 6
    logging buffered 51200 informational
    logging rate-limit all 10000
    logging console critical
    enable password 7 <removed>
    aaa new-model
    aaa authentication login default group tacacs+ local
    aaa authentication login if_needed local
    aaa authentication enable default enable
    aaa authentication ppp default local
    aaa authorization exec default group tacacs+ local if-authenticated
    aaa accounting exec default start-stop group tacacs+
    aaa accounting commands 15 default start-stop group tacacs+
    aaa session-id common
    clock timezone AEST 10
    clock summer-time AEST recurring last Sun Oct 2:00 last Sun Mar 3:00
    no network-clock-participate slot 1
    no network-clock-participate wic 0
    ip cef
    ip domain list <removed>
    ip domain list <removed>
    ip domain name <removed>
    ip host dd-cr-01e 2033 172.16.1.1
    ip host ddsws01 2034 172.16.1.1
    ip host ddsws04 2035 172.16.1.1
    ip host ddce565 2040 172.16.1.1
    ip name-server <removed>
    ip name-server <removed>
    username netops privilege 15 password 7 <removed>
    ip ssh source-interface FastEthernet0/0
    ip ssh logging events
    ip ssh version 2
    interface Loopback0
    ip address 172.16.1.1 255.255.255.255
    interface FastEthernet0/0
    ip address <removed> 255.255.255.0
    speed 100
    full-duplex
    interface Serial0/0
    no ip address
    shutdown
    interface BRI0/0
    no ip address
    encapsulation hdlc
    shutdown
    interface FastEthernet0/1
    no ip address
    shutdown
    duplex auto
    speed auto
    ip forward-protocol nd
    ip route 0.0.0.0 0.0.0.0 <removed>
    ip http server
    no ip http secure-server
    ip tacacs source-interface FastEthernet0/0
    ip radius source-interface FastEthernet0/0
    logging facility local6
    logging <removed>
    snmp-server community <removed> RO
    snmp-server community <removed> RW
    snmp-server location <removed>
    snmp-server contact NetOps
    menu ddras01 title ^C
    Cisco Terminal Server
    Select the number from the list below
    Use 'ctrl+shift+6' then 'x' to switch back to the menu
    ^C
    menu ddras01 text 1 Connect to DD-CR-01
    menu ddras01 command 1 resume dd-cr-01 /connect telnet dd-cr-01 2033
    menu ddras01 text 2 Connect to DDSWS01
    menu ddras01 command 2 resume ddsws01 /connect telnet ddsws01 2034
    menu ddras01 text 3 Connect to DDSWS04
    menu ddras01 command 3 resume ddsws04 /connect telnet ddsws04 2035
    menu ddras01 text 8 Connect to DDCE565
    menu ddras01 command 8 resume ddce565 /connect telnet ddce565 2040
    menu ddras01 text 9 Exit
    menu ddras01 command 9 menu-exit
    menu ddras01 clear-screen
    menu ddras01 status-line
    menu ddras01 line-mode
    tacacs-server host 10.2.0.50
    tacacs-server directed-request
    tacacs-server key 7 <removed>
    control-plane
    privilege exec level 15 write terminal
    privilege exec level 15 write
    privilege exec level 1 ping
    privilege exec level 10 undebug ip icmp
    privilege exec level 10 undebug ip
    privilege exec level 10 undebug all
    privilege exec level 10 undebug
    privilege exec level 10 terminal monitor
    privilege exec level 10 terminal
    privilege exec level 15 show running-config
    privilege exec level 5 show configuration
    privilege exec level 5 show
    privilege exec level 10 debug ip icmp
    privilege exec level 10 debug ip
    privilege exec level 10 debug all
    privilege exec level 10 debug
    privilege exec level 10 clear interface
    privilege exec level 10 clear counters
    privilege exec level 10 clear
    line con 0
    password 7 <removed>
    logging synchronous
    line 33 64
    no exec-banner
    exec-timeout 0 0
    no activation-character
    no exec
    transport preferred telnet
    transport input all
    escape-character 27
    stopbits 1
    flowcontrol hardware
    line aux 0
    line vty 0 4
    password 7 <removed>
    logging synchronous
    autocommand  menu ddras01
    line vty 5 181
    password 7 <removed>
    logging synchronous
    autocommand  menu ddras01
    ntp clock-period 17208487
    ntp source FastEthernet0/0
    ntp server <removed>
    end

  • See package bodies

    what privileges need to grant to a user in order for it to view/edit package bodies. currently, it can only see the declarations but not bodies.

    Hi,
    Query all_source (or dba_source) for the text of package bodies. You need DEBUG privileges on the package, or the extremely powerful system privilege CREATE ANY PROCEDURE.
    If all_source displays gibberish, then the package is wrapped, and the source code is not available from the data dictionary. Contact the author or vendor.
    You can't really edit a package. The owner, or someone with the CREATE ANY PROCEDURE privilege can execute a "CREATE OR REPLACE PACKAGE BODY" statement to make changes.

  • MWI Issues

    I have been trying to get the MWI stutter tone working on my system. Voicemail is working but when you pick up the handest you do not get the stutter tone to indicate there is a new message. I have attached my unity conf and router conf.
    clock timezone America/New_York
    hostname se-192-168-2-30
    line console
    system language preferred "en_US"
    ntp server 192.168.2.21 prefer
    software download server url "ftp://127.0.0.1/ftp" credentials hidden "6u/dKTN/hsEuSAEfw40XlF2eFHnZfyUTSd8ZZNgd+Y9J3xlk2B35j0nfGWTYHfmPSd8ZZNgd+Y9J3xlk2B35j0nfGWTYHfmPSd8ZZNgd+Y9J3xlk2B35j0nfGWTYHfmP"
    license agent max-sessions 9
    privilege ViewHistoricalReports create
    privilege ViewRealTimeReports create
    privilege ViewPrivateList create
    privilege ManagePrompts create
    privilege manage-users create
    privilege manage-passwords create
    privilege vm-imap create
    privilege local-broadcast create
    privilege ManagePublicList create
    privilege broadcast create
    groupname Broadcasters create
    username FRCUNITY create
    privilege ViewHistoricalReports description "Privilege to view historical reports"
    privilege ViewRealTimeReports description "Privilege to view realtime reports"
    privilege ViewPrivateList description "Privilege to view private list"
    privilege ManagePrompts description "Privilege to create, modify, or delete system prompts"
    privilege manage-users description "Privilege to create, modify, and delete users and groups"
    privilege manage-passwords description "Privilege to reset user passwords"
    privilege vm-imap description "Privilege to manage personal voicemail via IMAP client"
    privilege local-broadcast description "Privilege to send local broadcast messages"
    privilege ManagePublicList description "Privilege to manage public lists"
    privilege broadcast description "Privilege to send local or remote broadcast messages"
    privilege ViewHistoricalReports operation report.historical.view
    privilege ViewRealTimeReports operation report.realtime
    privilege ViewPrivateList operation voicemail.lists.private.view
    privilege ManagePrompts operation prompt.modify
    privilege ManagePrompts operation system.debug
    privilege manage-users operation user.mailbox
    privilege manage-users operation user.remote
    privilege manage-users operation user.configuration
    privilege manage-users operation group.configuration
    privilege manage-users operation user.notification
    privilege manage-users operation user.pin
    privilege manage-users operation user.password
    privilege manage-users operation system.debug
    privilege manage-passwords operation user.pin
    privilege manage-passwords operation user.password
    privilege manage-passwords operation system.debug
    privilege vm-imap operation voicemail.imap.user
    privilege local-broadcast operation broadcast.local
    privilege local-broadcast operation system.debug
    privilege ManagePublicList operation voicemail.lists.public
    privilege ManagePublicList operation system.debug
    privilege broadcast operation broadcast.local
    privilege broadcast operation broadcast.remote
    privilege broadcast operation system.debug
    groupname Administrators member FRC
    groupname Broadcasters privilege broadcast
    username FRC3008 phonenumber "3008"
    username FRC3000 phonenumber "3000"
    username FRC3010 phonenumber "3010"
    username FRC3005 phonenumber "3005"
    username FRC2002 phonenumber "2002"
    username FRC3002 phonenumber "3002"
    username FRC3012 phonenumber "3012"
    username FRC3004 phonenumber "3004"
    username FRC3009 phonenumber "3009"
    username FRC2001 phonenumber "2001"
    username FRC3011 phonenumber "3011"
    username FRC3006 phonenumber "3006"
    username FRC2000 phonenumber "2000"
    username FRC3001 phonenumber "3001"
    username FRC3003 phonenumber "3003"
    username FRC3007 phonenumber "3007"
    restriction msg-notification create
    restriction msg-notification min-digits 1
    restriction msg-notification max-digits 30
    restriction msg-notification dial-string preference 1 pattern * allowed
    backup server url "ftp://127.0.0.1/ftp" credentials hidden "EWlTygcMhYmjazXhE/VNXHCkplVV4KjescbDaLa4fl4WLSPFvv1rWUnfGWTYHfmPSd8ZZNgd+Y9J3xlk2B35j0nfGWTYHfmPSd8ZZNgd+Y9J3xlk2B35j0nfGWTYHfmP"
    calendar biz-schedule systemschedule
    open day 1 from 00:00 to 24:00
    open day 2 from 00:00 to 24:00
    open day 3 from 00:00 to 24:00
    open day 4 from 00:00 to 24:00
    open day 5 from 00:00 to 24:00
    open day 6 from 00:00 to 24:00
    open day 7 from 00:00 to 24:00
    end schedule
    ccn application autoattendant aa
    description "autoattendant"
    enabled
    maxsessions 6
    script "aa.aef"
    parameter "dialByExtnAnytime" "false"
    parameter "busOpenPrompt" "AABusinessOpen.wav"
    parameter "dialByExtnAnytimeInputLength" "4"
    parameter "operExtn" "0"
    parameter "welcomePrompt" "AAWelcome.wav"
    parameter "disconnectAfterMenu" "false"
    parameter "dialByFirstName" "false"
    parameter "busClosedPrompt" "AABusinessClosed.wav"
    parameter "allowExternalTransfers" "false"
    parameter "holidayPrompt" "AAHolidayPrompt.wav"
    parameter "businessSchedule" "systemschedule"
    parameter "MaxRetry" "3"
    end application
    ccn application autoattendant aa
    description "Cisco Auto-Attendant"
    enabled
    maxsessions 4
    script "aa.aef"
    parameter "busClosedPrompt" "AABusinessClosed.wav"
    parameter "holidayPrompt" "AAHolidayPrompt.wav"
    parameter "welcomePrompt" "AAWelcome.wav"
    parameter "disconnectAfterMenu" "false"
    parameter "dialByFirstName" "false"
    parameter "allowExternalTransfers" "false"
    parameter "MaxRetry" "3"
    parameter "dialByExtnAnytime" "false"
    parameter "busOpenPrompt" "AABusinessOpen.wav"
    parameter "businessSchedule" "systemschedule"
    parameter "dialByExtnAnytimeInputLength" "4"
    parameter "operExtn" "2020"
    end application
    ccn application ciscomwiapplication aa
    description "ciscomwiapplication"
    enabled
    maxsessions 4
    script "setmwi.aef"
    parameter "CallControlGroupID" "0"
    parameter "strMWI_OFF_DN" "8001"
    parameter "strMWI_ON_DN" "8000"
    end application
    ccn application msgnotification aa
    description "msgnotification"
    enabled
    maxsessions 4
    script "msgnotify.aef"
    parameter "logoutUri" "http://localhost/voicemail/vxmlscripts/mbxLogout.jsp"
    parameter "DelayBeforeSendDTMF" "1"
    end application
    ccn application promptmgmt aa
    description "promptmgmt"
    enabled
    maxsessions 1
    script "promptmgmt.aef"
    end application
    ccn application voicemail aa
    description "Cisco Voicemail"
    enabled
    maxsessions 4
    script "voicebrowser.aef"
    parameter "logoutUri" "http://localhost/voicemail/vxmlscripts/mbxLogout.jsp"
    parameter "uri" "http://localhost/voicemail/vxmlscripts/login.vxml"
    end application
    ccn engine
    end engine
    ccn reporting historical
    database local
    description "se-192-168-2-30"
    end reporting
    ccn subsystem email
    end subsystem
    ccn subsystem fax
    end subsystem
    ccn subsystem sip
    gateway address "192.168.2.21"
    end subsystem
    ccn trigger http urlname msgnotifytrg
    application "msgnotification"
    enabled
    maxsessions 2
    end trigger
    ccn trigger http urlname mwiapp
    application "ciscomwiapplication"
    enabled
    maxsessions 1
    end trigger
    ccn trigger sip phonenumber 3030
    application "autoattendant"
    enabled
    maxsessions 4
    end trigger
    ccn trigger sip phonenumber 3333
    application "voicemail"
    enabled
    maxsessions 4
    end trigger
    service phone-authentication
    end phone-authentication
    service voiceview
    enable
    end voiceview
    voicemail broadcast recording time 300
    voicemail default messagesize 240
    voicemail notification restriction msg-notification
    voicemail mailbox owner "FRC2000" size 300
    description "FRC2000's Mailbox"
    messagesize 120
    end mailbox
    voicemail mailbox owner "FRC2001" size 300
    description "FRC2001's Mailbox"
    messagesize 120
    end mailbox
    voicemail mailbox owner "FRC2002" size 300
    description "FRC2002's Mailbox"
    messagesize 120
    end mailbox
    voicemail mailbox owner "FRC3000" size 300
    description "FRC3000's Mailbox"
    messagesize 120
    end mailbox
    voicemail mailbox owner "FRC3001" size 300
    description "FRC3001's Mailbox"
    messagesize 120
    end mailbox
    voicemail mailbox owner "FRC3002" size 300
    description "FRC3002's Mailbox"
    messagesize 120
    end mailbox
    voicemail mailbox owner "FRC3003" size 300
    description "FRC3003's Mailbox"
    messagesize 120
    end mailbox
    voicemail mailbox owner "FRC3004" size 300
    description "FRC3004's Mailbox"
    messagesize 120
    end mailbox
    voicemail mailbox owner "FRC3005" size 300
    description "FRC3005's Mailbox"
    messagesize 120
    end mailbox
    voicemail mailbox owner "FRC3006" size 300
    description "FRC3006's Mailbox"
    messagesize 120
    end mailbox
    voicemail mailbox owner "FRC3007" size 300
    description "FRC3007's Mailbox"
    messagesize 120
    end mailbox
    voicemail mailbox owner "FRC3008" size 300
    description "FRC3008's Mailbox"
    messagesize 120
    end mailbox
    voicemail mailbox owner "FRC3009" size 300
    description "FRC3009's Mailbox"
    messagesize 120
    end mailbox
    voicemail mailbox owner "FRC3010" size 300
    description "FRC3010's Mailbox"
    messagesize 120
    end mailbox
    voicemail mailbox owner "FRC3011" size 300
    description "FRC3011's Mailbox"
    messagesize 120
    end mailbox
    voicemail mailbox owner "FRC3012" size 300
    description "FRC3012's Mailbox"
    messagesize 120
    end mailbox
    end
    Router#show running-config
    Building configuration...
    Current configuration : 14556 bytes
    ! Last configuration change at 14:07:39 EST Sun Oct 14 2012 by FRC
    version 15.0
    service timestamps debug datetime msec
    service timestamps log datetime msec
    no service password-encryption
    hostname Router
    boot-start-marker
    boot-end-marker
    card type t1 1 1
    logging buffered 3000000
    no logging console
    no logging monitor
    enable secret 5 $1$hM/T$ZNOt8gmyjeXUI2b3xc7aD/
    enable password FRC2080
    no aaa new-model
    clock timezone EST -5
    network-clock-participate slot 1
    dot11 syslog
    ip source-route
    ip cef
    ip dhcp excluded-address 192.168.2.201 192.168.2.254
    ip dhcp excluded-address 192.168.2.21
    ip dhcp pool sdm-pool1
       network 192.168.2.0 255.255.255.0
       default-router 192.168.2.21
       option 150 ip 192.168.2.21
    ip domain name yourdomain.com
    ip name-server 192.168.2.21
    no ipv6 cef
    multilink bundle-name authenticated
    stcapp ccm-group 1
    stcapp
    stcapp feature access-code
    stcapp supplementary-services
    port 0/0/0
      fallback-dn 3001
    port 0/0/1
      fallback-dn 3002
    port 0/0/2
      fallback-dn 3003
    port 0/0/3
      fallback-dn 3004
    port 0/1/0
      fallback-dn 3005
    port 0/1/1
      fallback-dn 3006
    port 0/1/2
      fallback-dn 3007
    port 0/1/3
      fallback-dn 3008
    port 0/2/0
      fallback-dn 3009
    port 0/2/1
      fallback-dn 3010
    port 0/2/2
      fallback-dn 3011
    port 0/2/3
      fallback-dn 3012
    isdn switch-type primary-5ess
    voice-card 0
    dspfarm
    dsp services dspfarm
    voice-card 1
    dspfarm
    dsp services dspfarm
    crypto pki trustpoint TP-self-signed-1983637694
    enrollment selfsigned
    subject-name cn=IOS-Self-Signed-Certificate-1983637694
    revocation-check none
    rsakeypair TP-self-signed-1983637694
    crypto pki trustpoint TP-self-signed-1838547803
    enrollment selfsigned
    subject-name cn=IOS-Self-Signed-Certificate-1838547803
    revocation-check none
    rsakeypair TP-self-signed-1838547803
    crypto pki trustpoint TP-self-signed-1151342093
    enrollment selfsigned
    subject-name cn=IOS-Self-Signed-Certificate-1151342093
    revocation-check none
    rsakeypair TP-self-signed-1151342093
    crypto pki certificate chain TP-self-signed-1983637694
    certificate self-signed 01
      3082024F 308201B8 A0030201 02020101 300D0609 2A864886 F70D0101 04050030
      31312F30 2D060355 04031326 494F532D 53656C66 2D536967 6E65642D 43657274
      69666963 6174652D 31393833 36333736 3934301E 170D3132 30333138 32303238
      30315A17 0D323030 31303130 30303030 305A3031 312F302D 06035504 03132649
      4F532D53 656C662D 5369676E 65642D43 65727469 66696361 74652D31 39383336
      33373639 3430819F 300D0609 2A864886 F70D0101 01050003 818D0030 81890281
      81008A6B C3D9D0F8 1A777EDA E7B10D20 1104EBDF 9F57E6AC 4CCBDD72 884A72C7
      A3525386 8C4B8B4A 36CAB2D3 16293787 8AC8D3EA 225F9C19 5AC45920 211E1821
      3955515D 80A6AF6F 53636D47 08A858A2 DEC93852 124E75B3 ABB8D189 B1CA6891
      4C19A1C1 BD8D2A4E 80BF4CB6 428B23B5 335F038A 3DC6606E BC91C5D9 0D5AAED7
      4A7F0203 010001A3 77307530 0F060355 1D130101 FF040530 030101FF 30220603
      551D1104 1B301982 17796F75 726E616D 652E796F 7572646F 6D61696E 2E636F6D
      301F0603 551D2304 18301680 1464E091 1D44AFDA FA04BA75 318751E0 189E1E8E
      84301D06 03551D0E 04160414 64E0911D 44AFDAFA 04BA7531 8751E018 9E1E8E84
      300D0609 2A864886 F70D0101 04050003 8181002B ED2F2C39 ED89C6C2 5E142DBE
      D6B54EB6 7124072B 2B5F7319 1013ED04 F9A01B3E D04DD11C 5F5D019E 62574C14
      13D8FBCF ACA51664 CBE61E5B 7490C38C 317D4A61 B02E3FE7 1FFB37A8 EDDB192E
      4DE67B9D CF5FA599 29C55A08 005B1D21 546073C8 A9C8B5B3 F86BC9F7 F2F90399
      DFFFBD1C F7C0086C DD10F435 EEA8163B 2F8DA7
            quit
    crypto pki certificate chain TP-self-signed-1838547803
    crypto pki certificate chain TP-self-signed-1151342093
    license udi pid CISCO2811 sn FTX1504AKG6
    archive
    log config
      hidekeys
    username FRC privilege 15 password 0 FRC2800
    controller T1 1/0
    cablelength short 133
    pri-group timeslots 1-16,24
    ip ftp username FRC
    ip ftp password FRC2800
    interface Tunnel1
    no ip address
    interface FastEthernet0/0
    description $ES_LAN$
    ip address 192.168.2.21 255.255.255.0
    duplex auto
    speed auto
    no mop enabled
    interface Service-Engine0/0
    ip unnumbered FastEthernet0/0
    service-module ip address 192.168.2.30 255.255.255.0
    service-module ip default-gateway 192.168.2.21
    interface FastEthernet0/1
    ip address 192.168.1.20 255.255.255.0
    duplex auto
    speed auto
    interface Serial1/0:23
    no ip address
    encapsulation hdlc
    isdn switch-type primary-5ess
    isdn incoming-voice voice
    no cdp enable
    ip forward-protocol nd
    ip http server
    ip http access-class 23
    ip http authentication local
    no ip http secure-server
    ip http timeout-policy idle 60 life 86400 requests 10000
    ip http path flash:/GUI
    ip route 192.168.2.30 255.255.255.255 Service-Engine0/0
    access-list 23 permit 10.10.10.0 0.0.0.7
    tftp-server flash:P00305000301.sbn
    tftp-server flash:CVM41.72-1-0-1.sbn
    tftp-server flash:Jar41.72-1-0-1.sbn
    tftp-server flash:TERM41.7-0-2SR1S.loads
    tftp-server flash:TERM41.DEFAULT.loads
    tftp-server flash:TERM61.DEFAULT.loads
    tftp-server flash:cnu41.72-1-0-1.sbn
    control-plane
    voice-port 0/0/0
    timeouts ringing infinity
    caller-id enable
    voice-port 0/0/1
    timeouts ringing infinity
    caller-id enable
    voice-port 0/0/2
    timeouts ringing infinity
    caller-id enable
    voice-port 0/0/3
    timeouts ringing infinity
    caller-id enable
    voice-port 0/1/0
    timeouts ringing infinity
    caller-id enable
    voice-port 0/1/1
    timeouts ringing infinity
    caller-id enable
    voice-port 0/1/2
    timeouts ringing infinity
    caller-id enable
    voice-port 0/1/3
    timeouts ringing infinity
    caller-id enable
    voice-port 0/2/0
    timeouts ringing infinity
    caller-id enable
    voice-port 0/2/1
    timeouts ringing infinity
    caller-id enable
    voice-port 0/2/2
    timeouts ringing infinity
    caller-id enable
    voice-port 0/2/3
    timeouts ringing infinity
    caller-id enable
    voice-port 0/3/0
    timeouts ringing infinity
    caller-id enable
    voice-port 0/3/1
    timeouts ringing infinity
    caller-id enable
    voice-port 1/0:23
    mgcp
    mgcp fax t38 ecm
    mgcp bind control source-interface FastEthernet0/0
    mgcp bind media source-interface FastEthernet0/0
    sccp local FastEthernet0/0
    sccp ccm 192.168.2.21 identifier 10 version 7.0
    sccp
    sccp ccm group 1
    associate ccm 10 priority 1
    switchback method graceful
    dial-peer voice 3001 pots
    service stcapp
    port 0/0/0
    dial-peer voice 3002 pots
    service stcapp
    port 0/0/1
    dial-peer voice 3003 pots
    service stcapp
    port 0/0/2
    dial-peer voice 3004 pots
    service stcapp
    port 0/0/3
    dial-peer voice 3005 pots
    service stcapp
    port 0/1/0
    dial-peer voice 3006 pots
    service stcapp
    port 0/1/1
    dial-peer voice 3007 pots
    service stcapp
    port 0/1/2
    dial-peer voice 3008 pots
    service stcapp
    port 0/1/3
    dial-peer voice 3009 pots
    service stcapp
    port 0/2/0
    dial-peer voice 3010 pots
    service stcapp
    port 0/2/1
    dial-peer voice 3011 pots
    service stcapp
    port 0/2/2
    dial-peer voice 3012 pots
    service stcapp
    port 0/2/3
    dial-peer voice 3013 pots
    service stcapp
    port 0/3/0
    dial-peer voice 3014 pots
    service stcapp
    port 0/3/1
    dial-peer voice 3015 pots
    service stcapp
    dial-peer voice 3016 pots
    service stcapp
    dial-peer voice 2000 pots
    destination-pattern 2...
    direct-inward-dial
    port 1/0:23
    forward-digits 4
    dial-peer voice 3333 voip
    destination-pattern 3333
    session protocol sipv2
    session target ipv4:192.168.2.30
    dtmf-relay sip-notify
    codec g711ulaw
    no vad
    dial-peer voice 3030 voip
    destination-pattern 3030
    session protocol sipv2
    session target ipv4:192.168.2.30
    dtmf-relay sip-notify
    codec g711ulaw
    no vad
    dial-peer voice 11 pots
    destination-pattern 11
    no digit-strip
    direct-inward-dial
    port 1/0:23
    dial-peer voice 8 pots
    destination-pattern 8
    no digit-strip
    port 1/0:23
    dial-peer voice 70 pots
    destination-pattern 70
    no digit-strip
    port 1/0:23
    dial-peer voice 71 pots
    destination-pattern 71
    no digit-strip
    port 1/0:23
    dial-peer voice 72 pots
    destination-pattern 72
    no digit-strip
    port 1/0:23
    dial-peer voice 73 pots
    destination-pattern 73
    no digit-strip
    port 1/0:23
    dial-peer voice 74 pots
    destination-pattern 74
    no digit-strip
    port 1/0:23
    dial-peer voice 12 pots
    destination-pattern 12
    no digit-strip
    direct-inward-dial
    port 1/0:23
    telephony-service
    max-ephones 40
    max-dn 100
    ip source-address 192.168.2.21 port 2000
    auto assign 1 to 144
    cnf-file perphone
    load 7961 term41.7-0-2SR1S
    voicemail 3333
    max-conferences 8 gain -6
    web admin system name Kevin1 password Frc1
    dn-webedit
    transfer-system full-consult
    transfer-pattern .T
    directory entry 3 2004 name C4ISR Space
    directory entry 4 2005 name CO Cabin ROP
    directory entry 5 3000 name Attendant Console
    directory entry 6 2001 name Bridge Port Fwd
    directory entry 7 2002 name Bridge Center Fwd
    directory entry 8 2003 name Bridge Starboard Fwd
    directory entry 9 2006 name Bridge MCMS Console
    directory entry 10 2007 name Bridge Weapons Station
    directory entry 11 2008 name XO Stateroom ROP
    directory entry 12 2009 name Bridge Workstation
    directory entry 13 2010 name Mess Deck
    directory entry 16 2020 name CO Cabin STE
    directory entry 17 2101 name SPP Net 1
    directory entry 18 2102 name SPP Net 2
    directory entry 19 3001 name 1-Person STBD Fwd
    directory entry 20 3002 name 1-Person PORT Fwd
    directory entry 21 3003 name 2-Person STBD Fwd
    directory entry 22 3004 name 2-Person PORT Fwd
    directory entry 23 3005 name 2-Person STBD Midship
    directory entry 24 3006 name 2-Person PORT Midship
    directory entry 25 3007 name 4-Person STBD Midship
    directory entry 26 3008 name 4-Person PORT Midship
    directory entry 27 3009 name EPO Stateroom
    directory entry 28 3010 name OPS Stateroom
    directory entry 29 3011 name XO Stateroom
    directory entry 31 3030 name Automated Attendant
    directory entry 30 2000 name Ship's Office Phone/Fax
    directory entry 32 2011 name Engine Room
    directory entry 33 3333 name Voicemail
    ephone-dn  1  dual-line
    number 3001
    pickup-group 31
    call-forward busy 3333
    call-forward noan 3333 timeout 30
    ephone-dn  2  dual-line
    number 3002
    pickup-group 31
    call-forward busy 3333
    call-forward noan 3333 timeout 30
    ephone-dn  3  dual-line
    number 3003
    call-forward busy 3333
    call-forward noan 3333 timeout 30
    ephone-dn  4  dual-line
    number 3004
    call-forward busy 3333
    call-forward noan 3333 timeout 30
    ephone-dn  5  dual-line
    number 3005
    call-forward busy 3333
    call-forward noan 3333 timeout 30
    ephone-dn  6  dual-line
    number 3006
    call-forward busy 3333
    call-forward noan 3333 timeout 30
    ephone-dn  7  dual-line
    number 3007
    call-forward busy 3333
    call-forward noan 3333 timeout 30
    ephone-dn  8  dual-line
    number 3008
    call-forward busy 3333
    call-forward noan 3333 timeout 30
    ephone-dn  9  dual-line
    number 3009
    call-forward busy 3333
    call-forward noan 3333 timeout 30
    ephone-dn  10  dual-line
    number 3010
    call-forward busy 3333
    call-forward noan 3333 timeout 30
    ephone-dn  11  dual-line
    number 3011
    call-forward busy 3333
    call-forward noan 3333 timeout 30
    ephone-dn  12  dual-line
    number 3012
    call-forward busy 3333
    call-forward noan 3333 timeout 30
    ephone-dn  15  octo-line
    number 3000
    call-forward busy 3333
    call-forward noan 3333 timeout 30
    ephone-dn  80
    number 8000....
    mwi on
    ephone-dn  81
    number 8001....
    mwi off
    ephone  1
    mac-address 64F9.CF52.8000
    max-calls-per-button 2
    type anl
    button  1:1
    ephone  2
    mac-address 64F9.CF52.8001
    max-calls-per-button 2
    type anl
    button  1:2
    ephone  3
    mac-address 64F9.CF52.8002
    max-calls-per-button 2
    type anl
    button  1:3
    ephone  4
    mac-address 64F9.CF52.8003
    max-calls-per-button 2
    type anl
    button  1:4
    ephone  5
    mac-address 64F9.CF52.8080
    max-calls-per-button 2
    type anl
    button  1:5
    ephone  6
    mac-address 64F9.CF52.8081
    max-calls-per-button 2
    type anl
    button  1:6
    ephone  7
    mac-address 64F9.CF52.8082
    max-calls-per-button 2
    type anl
    button  1:7
    ephone  8
    mac-address 64F9.CF52.8083
    max-calls-per-button 2
    type anl
    button  1:8
    ephone  9
    mac-address 64F9.CF52.8100
    max-calls-per-button 2
    type anl
    button  1:9
    ephone  10
    mac-address 64F9.CF52.8101
    max-calls-per-button 2
    type anl
    button  1:10
    ephone  11
    mac-address 64F9.CF52.8102
    max-calls-per-button 2
    type anl
    button  1:11
    ephone  12
    mac-address 64F9.CF52.8103
    max-calls-per-button 2
    type anl
    button  1:12
    ephone  13
    mac-address DC7B.9477.D1DC
    type 7962
    button  1:15
    banner exec ^CC
    % Password expiration warning.
    Cisco Router and Security Device Manager (SDM) is installed on this device and
    it provides the default username "cisco" for  one-time use. If you have already
    used the username "cisco" to login to the router and your IOS image supports the
    "one-time" user option, then this username has already expired. You will not be
    able to login to the router with this username after you exit this session.
    It is strongly suggested that you create a new username with a privilege level
    of 15 using the following command.
    username <myuser> privilege 15 secret 0 <mypassword>
    Replace <myuser> and <mypassword> with the username and password you want to
    use.
    ^C
    banner login ^CC
    Cisco Router and Security Device Manager (SDM) is installed on this device.
    This feature requires the one-time use of the username "cisco"
    with the password "cisco". The default username and password have a privilege le
    vel of 15.
    Please change these publicly known initial credentials using SDM or the IOS CLI.
    Here are the Cisco IOS commands.
    username <myuser>  privilege 15 secret 0 <mypassword>
    no username cisco
    Replace <myuser> and <mypassword> with the username and password you want to use
    For more information about SDM please follow the instructions in the QUICK START
    GUIDE for your router or go to http://www.cisco.com/go/sdm
    ^C
    line con 0
    login local
    line aux 0
    line 194
    no activation-character
    no exec
    transport preferred none
    transport input all
    transport output pad telnet rlogin lapb-ta mop udptn v120 ssh
    line vty 0 4
    access-class 23 in
    exec-timeout 0 0
    privilege level 15
    password FRC2800
    login
    transport input telnet ssh
    line vty 5 15
    access-class 23 in
    privilege level 15
    login local
    transport input telnet ssh
    scheduler allocate 20000 1000
    ntp master
    end

    I have been told that the nortel is not using MWI ON/OFF numbers. I dont really understand the nortel side of the setup.
    Below is what Cisco is sending accross the QSIG trunk to the Nortel. 8680 is the extension we are trying to light.
    Thanks
    Nov 23 10:25:08.320 mst: ISDN Se0/0/0:23 Q931: TX -> RELEASE_COMP pd = 8  callref = 0x0065
    CPC-GNAB-03UC01#
    Nov 23 10:25:13.348 mst: ISDN Se0/0/0:23 Q931: TX -> SETUP pd = 8  callref = 0x0066
            Sending Complete
            Bearer Capability i = 0xA880
                    Standard = ISO/IEC
                    Transfer Capability = Unrestricted Digital
                    Transfer Mode = Circuit
                    Transfer Rate = Packet - not specified
            Channel ID i = 0xAC
                    Exclusive, Channel 38
            Facility i = 0x9FAA06800100820100A11B0202F0D3060528F9120050300EA5090A01001204383638300A0120
            Calling Party Number i = 0x2181, N/A
                    Plan:ISDN, Type:National
            Called Party Number i = 0xA1, '8680'
                    Plan:ISDN, Type:National
    Nov 23 10:25:13.472 mst: ISDN Se0/0/0:23 Q931: RX <- CALL_PROC pd = 8  callref = 0x8066
            Channel ID i = 0xAC
                    Exclusive, Channel 24
    CPC-GNAB-03UC01#
    Nov 23 10:25:13.480 mst: ISDN Se0/0/0:23 Q931: RX <- RELEASE pd = 8  callref = 0x8066
            Cause i = 0x8190 - Normal call clearing
            Facility i = 0x9FAA06800100820100A4070202F0D3810101
    Nov 23 10:25:13.488 mst: ISDN Se0/0/0:23 Q931: TX -> RELEASE_COMP pd = 8  callref = 0x0066
    CPC-GNAB-03UC01#

  • "opaque" for variable type in debugger

    I am debugging a database package body. I see some variables listed with a type of "opaque". What does that mean?
    Mike

    If a variable shows up as "opaque", it means that the package in which the variable type (not the variable itself) is defined is not compiled with debug information, or the debugging user does not have the debug privilege to that package (typically when the package belongs to a different database user).
    If that package is not compiled with debug information, just recompile it with debug information. If the debugging user does not have the debug privilege to the package, just have that package owner grant the debug privilege on that package to the debugging user via "grant debug on xxx to user_yyy" (or have the DBA do so).
    Thanks.

  • How to access java source ?

    Hello All,
    If Oracle User A has a java source called 'abcd' and if User B want to see that source, how can it be done ?
    What privileges should i grant ? [I know that user A could see the source using view user_source]
    TIA,
    JJ

    You can use all_source: select * from all_source where owner = <User A> and name = 'abcd'
    HTH
    Enrique
    It's assumed that User B has execute or debug privilege on 'abcd'
    Edited by: Enrique Orbegozo on Oct 10, 2008 1:15 AM

  • What is basic difference between alter any & bebug any procedure sys privs?

    Hi
    I would like to know what is the basic difference between alter any & debug any procedure sys privs? Under which circustances, these will be granted?
    Regards
    Ariz

    ALTER ANY is the privilege to recompile. The DEBUG privilege displays information on all SQL statements executed by the application generated by debug mode.
    I have never found any value in creating a procedure in debug mode though I have found a lot of procs compiled in debug mode that needed to be recompiled.

  • Granting system privileges DEBUG ANY PROCEDURE and CONNECT SESSION in 10gXE

    I am using Oracle DB 10g Express Edition and trying out SQL Developer. Whenever I want to debug a procedure I got the error:
    This session requires DEBUG CONNECT SESSION and DEBUG ANY PROCEDURE user privileges.
    But I don't see these privileges to grant in the XE GUI for users.
    Does anybody know if this is supported in XE.
    Thanks.

    Hi
    Use SQL*Plus (or the apex interface), logon as dba and type this sql statements:
    grant DEBUG CONNECT SESSION to <username>;
    grant CONNECT SESSION to <username>;

Maybe you are looking for

  • [solved] Problem with OSSv4 and Pragha/Consonance

    Hi all, I am getting some problems having Pragha/Consonance work with oss: $ pragha -a oss -g /dev/dsp -m /dev/mixer ao_oss ERROR: Unrecognized channel name "samplerate INT" in channel matrix "samplerate INT" ao_oss WARNING: Input channel matrix inva

  • BPM workflow not able to reflect the latest changes done.

    Hi. I've a BPM instance in QA which got logically deleted after entering into exception block . Now i've made necessary modifications (removing a loop and adding a Switch) in DEV and transported to QA (Repository) successfully. Now QA repository has

  • FCP 7 and Mountain Lion

    Hi, I know there's been talk about final cut pro 7 and mountain lion / os x here + on Creative Cow but can't find an answer to my question. I've got a copy disc of FCP 7 which quits unexpectedly when trying to install on my new macbook pro which runs

  • Activation key expired??

    Recently bought 5 tunes from NOKIA MUSIC SHOP. Have downloaded them to my 6300, but when I try to play them, I get the message ACTIVATION KEY EXPIRED. Can anyone help please.

  • Tabular Form MRU Update

    Hi All, I have a table Tab1 with columns EditDate DATE, ID Number, Value Number. It has composite primary key (EditDate, ID). Sample values are stored as follows. Edit Date ID Value 01-MAY-2007 01:00:00 1 0 01-MAY-2007 02:00:00 1 0 01-MAY-2007 03:00: