Jump to content

Keamas

Members
  • Gesamte Inhalte

    34
  • Registriert seit

  • Letzter Besuch

Beiträge erstellt von Keamas

  1. Hallo,

    ich möchte gerade ein Proxy Pac File programmieren und habe dabei folgendes Problem:

     

    Das Script sollte den richtigen Proxy wählen abhängig aus welchem Netz der Host kommt.

    Allerdings gibt es in dem Script ein paar ausnahmen wie microsoft.com.

     

    Allerdings scheint es als würde das Script diese Zeilen nicht auslesen. Laut meinem Testtol kommt er nie da an.

    Kann mir bitte jemand helfen und sagen wo der Fehler hier ist oder habe ich einen Denkfehler drin oder funktioniert das was ich machen will ganz anders?

    function FindProxyForURL(url, host)
    {
        {
            /* The following is a load distribution and failover for the different locations. */
            /* EXAMPLE:
             if (isInNet(myIpAddress(), "10.1.0.0", "255.255.0.0"))
             {
             return "PROXY wcg1.example.com:8080; " + "PROXY wcg2.example.com:8080";
             } */
    
            //USA
            if (isInNet(myIpAddress(), "10.1.0.0", "255.255.255.0") ||		//Clients
                isInNet(myIpAddress(), "10.2.0.0", "255.255.255.0")) 	    //Servers
    
            {
                return "PROXY proxy-us.example.com:8080;"
            }
    
            //Europe
            if (isInNet(myIpAddress(), "10.20.0.0", "255.255.255.0") ||	//Clients
                isInNet(myIpAddress(), "10.21.0.0", "255.255.255.0") ||   //Servers
                isInNet(myIpAddress(), "10.22.0.0", "255.255.255.0") ||    //Developer
                isInNet(myIpAddress(), "10.23.0.0", "255.255.255.0")) 	//Client VPN
            {
                return "PROXY proxy_eu.example.com:8080;"
            }
    
            /* If no networks matches use the proxy servers. */
            else return "PROXY proxy.example.com:8080";
    
    
    
    
    
            /* Normalize the URL for pattern matching
             url = url.toLowerCase();
             host = host.toLowerCase();
             {
             /* Don't proxy local hostnames */
    
    
            /* If the requested website is hosted within the internal network, send direct.*/
            if (isPlainHostName(host)) {
                return 'DIRECT';
            }
            /* Don't proxy local domains */
            if (dnsDomainIs(host, ".example1.com") ||
                (host == "example1.com") ||
                dnsDomainIs(host, ".example2.com") ||
                (host == "example2.com") ||
                dnsDomainIs(host, ".example3.com") ||
                (host == "example3.com")) {
                return 'DIRECT';
            }
            /* Don't proxy Windows Update */
            if ((host == "download.microsoft.com") ||
                (host == "ntservicepack.microsoft.com") ||
                (host == "cdm.microsoft.com") ||
                (host == "wustat.windows.com") ||
                (host == "windowsupdate.microsoft.com") ||
                (dnsDomainIs(host, ".windowsupdate.microsoft.com")) ||
                (host == "update.microsoft.com") ||
                (dnsDomainIs(host, ".update.microsoft.com")) ||
                (dnsDomainIs(host, ".windowsupdate.com"))) {
                return 'DIRECT';
            }
            if (isResolvable(host)) {
                var hostIP = dnsResolve(host);
                /* Don't proxy non-routable addresses (RFC 3330) */
                if (isInNet(hostIP, '0.0.0.0', '255.0.0.0') ||
                    isInNet(hostIP, '10.0.0.0', '255.0.0.0') ||
                    isInNet(hostIP, '127.0.0.0', '255.0.0.0') ||
                    isInNet(hostIP, '169.254.0.0', '255.255.0.0') ||
                    isInNet(hostIP, '172.16.0.0', '255.240.0.0') ||
                    isInNet(hostIP, '192.0.2.0', '255.255.255.0') ||
                    isInNet(hostIP, '192.88.99.0', '255.255.255.0') ||
                    isInNet(hostIP, '192.168.0.0', '255.255.0.0') ||
                    isInNet(hostIP, '198.18.0.0', '255.254.0.0') ||
                    isInNet(hostIP, '224.0.0.0', '240.0.0.0') ||
                    isInNet(hostIP, '240.0.0.0', '240.0.0.0')) {
                    return 'DIRECT';
                }
                /* Don't proxy local addresses.*/
                if (false) {
                    return 'DIRECT';
                }
            }
            if (url.substring(0, 5) == 'http:' ||
                url.substring(0, 6) == 'https:' ||
                url.substring(0, 4) == 'ftp:') {
                return 'PROXY proxy.example.com:8080';
            }
            return 'DIRECT';
    
    
        }
    
    
    
    }
    
  2. Ich analysiere eine sehr große Datenmenge. Dabei wird zuerst Alle Daten entpackt, aus den unterschiedlichen Dateieformaten der Text Extrahiert sowohl OCR usw... und dann nach bestimmten Werten in den Daten gesucht.

     

    Und ich würde gerne die Systemauslastung bei jedem der Schritte sehen, also Entpacken, Text extraktion und dann bei der Analyse....

  3. Hallo ich will gerne bei einer Berechnung die ich mit Windows 7 durchführe die Systemleisung also CPU, RAM Auslastung und Festplatten I/O messen.

    Dazu habe ich das Windows eigene Performance Monitoring Tool verwendet und ein User Defined Data Collector Set eigetrichtet. Der Prozess den ich überwachen wollte lief nun 36 stunden leider hat der Performance Monitor irgendwann aufgehört aufzuzeichnen. Unter Einstellungen des Data Collector Set --> Stop Conditions sind keine Stop limitierungen eingetragen.

    Kann es sein das die Datenmenge der gesammelten Daten zu groß ist? Oder weiss jemand warum das immer abbricht? gibt es irgendwas zu beachten?

    Ist es möglich irgendwo einzustellen wie oft die daten abgeholt werden z.B. alle 3 min sollen daten gesammelt werden? Damit die Datengröße vom monitoring nicht zu groß zu werden?

     

    Sollte ich lieber ein anderes Tool verwenden? Wenn ja welches?

  4. Hi, ich habe eine VM mit Windows 2008 R2 (Testaufbau). Leider ist die VM komplett vermurkst und habe leider keinen brauchbaren Snapshot.

    Nun möchte ich gerne eine neue Windows 2008 R2 Server VM machen und würde gerne in die neue VM die aktuelle Windows Domäne mit DNS einträgen usw... importieren so damit alle Clients, User und DNS einträge vorhanden sind und alle User sich an der neuen VM authentifizieren können. Nun habe ich schon mal bei google etwas geschau, allerdings gibt es ja recht viele Möglichkeiten solch ein Backup zu machen...

     

    Nun würde ich gerne wissen was ist die beste Möglichkeit für mein Vorhaben?

    Wäre nett noch ein paar Infos zu bekommen und eventuelle Wege und Möglichkeiten...

  5. Hier noch der dcdiag output schlägt alles fehl da er sich nicht verbinden kann:

     

    Directory Server Diagnosis
    
    Performing initial setup:
      Trying to find home server...
      Home Server = ZOIDBERG
      * Identified AD Forest.
      Done gathering initial info.
    
    Doing initial required tests
    
      Testing server: Default-First-Site-Name\ZOIDBERG
         Starting test: Connectivity
            The host
            701e0ecf-bdd6-422d-b73d-26af2c750c21._msdcs.planet-express.internal
            could not be resolved to an IP address. Check the DNS server, DHCP,
            server name, etc.
            Got error while checking LDAP and RPC connectivity. Please check your
            firewall settings.
            ......................... ZOIDBERG failed test Connectivity
    
    Doing primary tests
    
      Testing server: Default-First-Site-Name\ZOIDBERG
         Skipping all tests, because server ZOIDBERG is not responding to
         directory service requests.
    
    
      Running partition tests on : ForestDnsZones
         Starting test: CheckSDRefDom
            ......................... ForestDnsZones passed test CheckSDRefDom
         Starting test: CrossRefValidation
            ......................... ForestDnsZones passed test
            CrossRefValidation
    
      Running partition tests on : DomainDnsZones
         Starting test: CheckSDRefDom
            ......................... DomainDnsZones passed test CheckSDRefDom
         Starting test: CrossRefValidation
            ......................... DomainDnsZones passed test
            CrossRefValidation
    
      Running partition tests on : Schema
         Starting test: CheckSDRefDom
            ......................... Schema passed test CheckSDRefDom
         Starting test: CrossRefValidation
            ......................... Schema passed test CrossRefValidation
    
      Running partition tests on : Configuration
         Starting test: CheckSDRefDom
            ......................... Configuration passed test CheckSDRefDom
         Starting test: CrossRefValidation
            ......................... Configuration passed test CrossRefValidation
    
      Running partition tests on : planet-express
         Starting test: CheckSDRefDom
            ......................... planet-express passed test CheckSDRefDom
         Starting test: CrossRefValidation
            ......................... planet-express passed test
            CrossRefValidation
    
      Running enterprise tests on : planet-express.internal
         Starting test: LocatorCheck
            ......................... planet-express.internal passed test
            LocatorCheck
         Starting test: Intersite
            ......................... planet-express.internal passed test
            Intersite

     

    Es ist der einzigste DC in der Umgebung

    Habe mit dem DNS Server eintrag schon etwas herumgespielt einmal 127.0.0.1 eingetragen oder wie jetzt 192.168.1.11 hat jedoch nichts gebracht....

    
    Windows IP Configuration
    
      Host Name . . . . . . . . . . . . : ZOIDBERG
      Primary Dns Suffix  . . . . . . . : planet-express.internal
      Node Type . . . . . . . . . . . . : Hybrid
      IP Routing Enabled. . . . . . . . : No
      WINS Proxy Enabled. . . . . . . . : No
      DNS Suffix Search List. . . . . . : planet-express.internal
    
    Ethernet adapter Local Area Connection:
    
      Connection-specific DNS Suffix  . :
      Description . . . . . . . . . . . : Intel(R) PRO/1000 MT Network Connection
      Physical Address. . . . . . . . . : 00-0C-29-09-AE-58
      DHCP Enabled. . . . . . . . . . . : No
      Autoconfiguration Enabled . . . . : Yes
      Link-local IPv6 Address . . . . . : fe80::e933:ccd7:e234:4846%11(Preferred)
      IPv4 Address. . . . . . . . . . . : 192.168.1.11(Preferred)
      Subnet Mask . . . . . . . . . . . : 255.255.255.0
      Default Gateway . . . . . . . . . : 192.168.1.1
      DHCPv6 IAID . . . . . . . . . . . : 234884137
      DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-15-F2-DD-9A-00-0C-29-09-AE-58
    
      DNS Servers . . . . . . . . . . . : ::1
                                          192.168.1.11
    
    ....
    

  6. Hi ich habe einen Windows 2008 R2 auf meinem ESXi 5 laufen (Testumgebung).

    Ich habe in der letzten Ziet keine Änderungen vorgenommen ausser die NTP Sync eingerichtet da die Zeit nich gestimmt hat. Ein paar Tage später schau ich auf den Server und es geht kein DNS mehr und das Active Directory bringt folgende Fehler.

     

    Active Directory Domain Services was unable to establish a connection with the global catalog. 
    
    Additional Data 
    Error value:
    8430 The directory service encountered an internal failure. 
    Internal ID:
    3200db0 
    
    User Action: 
    Make sure a global catalog is available in the forest, and is reachable from this domain controller. You may use the nltest utility to diagnose this problem.

     

     

    The DNS server was unable to open Active Directory.  This DNS server is configured to obtain and use information from the directory for this zone and is unable to load the zone without it.  Check that the Active Directory is functioning properly and reload the zone. The event data is the error code.
    
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.

     

    In die DNS Server Konfiguration komme ich nur über Fehlermeldung und der DNS ist nicht vorhanden (siehe Screenshot)

    -Restarten des Servers, Dienste, Neuinstallation des DNS Dienstes hat alles nichts gebracht.

     

     

    Woran kann das liegen ? Bzw. wie kann ich diesen Fehler behen hat jemand eine IDEE ?

    post-25948-13567390062588_thumb.jpg

  7. hier das war der Fehler: Error 1001. Instllation of Web Interface failed (siehe Screenshot), dieser trat bei der installation auf. Ich habe mal etwas gegoogelt und zwar einiges gefunden aber hat leider auch nichts geholfen.

    Gibts irgendwo eine log datei wo evtl mehr drin steht. Oder hat jemand ne idee woran das liegen kann.

    Ich nutze Windows 2003 R2 IIS und habe alle Windows Updates installiert und auch Java.

  8. so ich habe nun ein wenig herumgespielt und es scheint so als könnte die Citrix Access Management Console keinen Server finden bzw. keine "Webinterface installation" obwohl das auf der gleichen Maschine ist. auch IP, localhost usw... beim discovery angegen aber nichts.

     

    Ich glaube irgendwas stimmt mit dem Webinterface nicht. Ich kann mich erinnern bei der Installation ist eine Fehlermeldung aufgetaucht am ende stand trotzdem Erfolgreich dran. Ich habe auch mal das neuste Update für das Webinterface geladen und installiert, allerdings hat das auch nichts gebracht.

     

    Also in dem Webinterface muss er Wurm drin sein. Allerdings komme ich nicht weiter, wo kann ich zur Fehlerbehebung ansetzen ?

  9. Hi, ich benutze Windows 2003 mit Citrix xenapp 5.

    Wenn ich in der n Citrix Management Access Console die Discovery konfiguration starte, bekomme ich nie die Auswahl wo ich meinen Server auswählen kann. siehe Bild:

    Step07.gif

     

    das ganze schaut bei mir so aus:

    citrix.jpg

    Es läuft einfach durch ohne entsprechende Punkte abzufragen.

     

    Auch fehlen bei mir in der Console Punkte wie Licensing

     

    Step11.gif

     

    Ich habe mich an diesem Guide orientiert: Learning the Basics of XenApp 5 (Part 6 of 7) - Webster

     

    Woran kann das liegen ? Lizensierung, fehlen Citrix Komponenten, Windows Komponenten ???

     

    Ich habes nun schon mehrmals neu installiert usw... aber immer das gleiche.

     

    Kann mir jemand helfen ?

  10. Hi ich habe versucht ein IPv6 test lab mittels vmware aufzubauen, wie es in dem tech net paper beschrieben wird.

     

    Step-by-Step Guide for Setting Up IPv6 in a Test Lab

     

    nur das ich Windows 2008 Server und Windows 7 Clients eingesetzt habe.

     

    Ich habe das gaze nach der Anleitung durchgeführung "Configure the test lab to use ISATAP" allerdings bei dem folgenden Kommando habe ich nun meine Probleme:

     

    netsh interface ipv6 set interface "Automatic Tunneling Pseudo-Interface" forwarding=enabled advertise=enabled

     

    Wie man sehen kann habe ich kein "Automatic Tunneling Pseudo-Interface" Ich habes dann mit dem "Tunnel adapter Local Area Connection* 8" versucht aber hat leider nichts geholfen.

    Heisst das ding bei Windows 2008 Server anderst oder muss noch aktiviert werden oder wie komme ich zu dem "Automatic Tunneling Pseudo-Interface"? oder was benutze ich sonst ?

     

     

     

    C:\Users\Administrator>netsh interface ipv6 show interface

     

    Idx Met MTU State Name

    --- --- ----- ----------- -------------------

    1 50 4294967295 connected Loopback Pseudo-Interface 1

    12 50 1280 disconnected Local Area Connection* 8

    10 10 1500 connected Subnet1 Connection

    11 10 1500 connected Subnet2 Connection

     

     

    C:\Users\Administrator>ipconfig /all

     

    Windows IP Configuration

     

    Host Name . . . . . . . . . . . . : Amy-Router1

    Primary Dns Suffix . . . . . . . : Planet-Express.local

    Node Type . . . . . . . . . . . . : Hybrid

    IP Routing Enabled. . . . . . . . : Yes

    WINS Proxy Enabled. . . . . . . . : No

    DNS Suffix Search List. . . . . . : Planet-Express.local

    planet-express

     

    Ethernet adapter Subnet2 Connection:

     

    Connection-specific DNS Suffix . : planet-express

    Description . . . . . . . . . . . : Intel® PRO/1000 MT Network Connection #

    2

    Physical Address. . . . . . . . . : 00-0C-29-03-62-34

    DHCP Enabled. . . . . . . . . . . : No

    Autoconfiguration Enabled . . . . : Yes

    Link-local IPv6 Address . . . . . : fe80::1d93:7ee:eb8a:fb61%11(Preferred)

    IPv4 Address. . . . . . . . . . . : 10.0.2.1(Preferred)

    Subnet Mask . . . . . . . . . . . : 255.255.255.0

    Default Gateway . . . . . . . . . : fe80::e465:cd36:5e4c:7671%11

    fe80::a450:de5a:3df4:75c0%11

    10.0.2.2

    DNS Servers . . . . . . . . . . . : 10.0.2.1

    NetBIOS over Tcpip. . . . . . . . : Enabled

     

    Ethernet adapter Subnet1 Connection:

     

    Connection-specific DNS Suffix . : planet-express

    Description . . . . . . . . . . . : Intel® PRO/1000 MT Network Connection

    Physical Address. . . . . . . . . : 00-0C-29-03-62-2A

    DHCP Enabled. . . . . . . . . . . : No

    Autoconfiguration Enabled . . . . : Yes

    IPv6 Address. . . . . . . . . . . : 2001:db8:0:1:f016:a630:85f0:4641(Preferre

    d)

    Link-local IPv6 Address . . . . . : fe80::f016:a630:85f0:4641%10(Preferred)

    IPv4 Address. . . . . . . . . . . : 10.0.1.1(Preferred)

    Subnet Mask . . . . . . . . . . . : 255.255.255.0

    Default Gateway . . . . . . . . . :

    DNS Servers . . . . . . . . . . . : 10.0.1.2

    NetBIOS over Tcpip. . . . . . . . : Enabled

     

    Tunnel adapter Local Area Connection* 8:

     

    Media State . . . . . . . . . . . : Media disconnected

    Connection-specific DNS Suffix . : planet-express

    Description . . . . . . . . . . . : isatap.planet-express

    Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0

    DHCP Enabled. . . . . . . . . . . : No

    Autoconfiguration Enabled . . . . : Yes

     

    C:\Users\Administrator>

  11. Hallo ich möchte mir einen Microsoft Exchange Server installieren, und den Push dienst nutzen. Allerdings habe ich bisherige e-Mail adressen wie auch bei Gmail die ich gerne weiternutzen würde.

     

    Ist es möglich den Exchange Server mit anderen imap Accountz zu betreiben wie z.B. Gmail ? um dann den Push Dienst zu nutzen?

  12. Hi kann jemand der Vista installiert hat, für mich folgendes nachsehen ?

     

    Ich sollte wissen was in folgenden Regestry Eintrag steht:

     

    HKEY_LOCAL_MACSHINE--> SYSTEM--> ControlSet001--> Service --> USBCIR

     

    und brauch folgende Werte:

     

    Start

    Group

     

    Währe echt klasse wenn kurz jemand posten könnte was da drinn steht.

  13. Hi ich habe ein Problem mit den Netzwerkeinstellungen bei einem Centrino Notebook.

    Alle PC's bei mir im Netzwerk funktionieren einwandfrei und bekommen ihre IP via DHCP.

    Nur das Centrino Notebook bekommt via DHCP eine IP: 169.254.102.97 255.255.0.0

    Aber kein Gateway und DNS.

    Dann habe ich die IP adresse Manuell eingestellt.

    Ping auf Router und andere PC's und Webistes tut (z.B. 193.99.144.85)

    Allerdings tut kein ping (z.B. http://www.heise.de) habe mal mit DNS rumgespielt ( T-Online DNS Server und Router als DNS ) aber hat nichts gebraucht.

    Komme im Browser (Firefox und IE) nicht mal auf meinen Router nur pingen geht.

     

    Also irgendwie ganz komisch. Aber vielleicht kann mir ja jemand helfen.

  14. Hi ich habe auf meinem PC Windows XP Pro installiert.

    Nun bin ich stolzer Besitzer einer Windows XP Media Center 2005 Edition.

    Muss ich meinen PC nun neu installieren? Oder ist es irgendwie möglich das System Updaten? Ohne eine lästige Neuinstallation ?

     

    Sollte ein Update möglich sein, Würde mich zusätzlich noch interessieren, muss ich das ganze dann wieder mit einem Aktivierungskey aktivieren?

×
×
  • Neu erstellen...