Jump to content


RebelRenegade

Established Members
  • Posts

    20
  • Joined

  • Last visited

Posts posted by RebelRenegade

  1. Cheers, but we have IP helper commands in for both DHCP and the PXE servers already.

     

    The boundaries are all fine too.

     

    It's just strange how that server can get to the PXe Service Point fine, yet the clients can't...

    Is the server he deployed still on subnet A?

  2. Defining the platform doesn't matter for PXE booting. PXE ignores that setting. If you make the advertisement mandatory, any computer that boots into PXE will run the task sequence without hitting F12 (good reason to put a password on your PXE boot).

     

    If you advertise it to all unknown computers, the task sequence won't run from windows. Computers with the SCCM client installed won't be unknown. Computers without the SCCM client won't see the advertisement unless they PXE boot.

  3. The task sequence won't run on anything until you advertise it to a collection.

     

    Plus, if you set the task sequence to only run on an old platform (see below), you won't have to worry about it accidentally being deployed to servers or end users. Assuming you don't have people still running Windows 2000 at least.

    post-13138-0-78537500-1331042898_thumb.jpg

  4. I've tried running it as a command line "cmd /k %~dp0windirstat1_1_2_setup.exe /s" and used that command line as a program inside of a package and it just hangs like it's waiting for the program to exit. This same method works fine for other .exe installs. If I run that command in Windows to test, it works fine.

     

    smsts.log just says Waiting for job status notification... over and over.

  5.  

    mose@CP - what was the different setup you went to? Was it a Multicast solution?

    You need IGMP snooping enabled on all access switches, and multicast routing and PIM (IP services IOS) enabled on all L3 switches. Some switches will have PIM/mcast and IGMP snooping on them depending on your topology.

     

    So imagine a hub and spoke topology. Your core switch and WDS/SCCM server resides in the hub. And your core switch Switch A is connected to Switch B in another building on your campus. You route between Switch A and Switch B.

     

    In Switch A and B, ip multicast-routing distributed has to be enabled globally. ip pim sparse-dense mode is enabled per routed/VLAN interface. Verify with show ip pim neighbor and show ip pim interface. This is like show cdp neighbor for multicast routing. You should see your directly connected neighbor with the 1st command, and all interfaces with pim enabled with the 2nd.

     

    Now Switch B connects to switches C, D, and E in this building to provide access to hosts. Switches C, D & E need ip igmp snooping enabled globally. Verify with show ip igmp snooping mrouter. This will show the port that connects back to Switch B. Show ip igmp groups will show multicast groups that clients have joined. Even without an OSD running, you'll likely see hosts like network printers joining groups because of default settings.

  6. The PE phase doesn't have full driver support. Sometimes you have to inject the drivers into your boot.wim. Instructions for doing that and enabling F8 command support are on this forum and also easily found on google.

  7. Just whipped this up w/o looking over your entire list of requirements. It just includes Name, MAC Address and Interface Name, but you can easily add Model, Serial Number, OS and Service Pack to it.

     

    The other tables you want are dbo.v_GS_PC_BIOS.SerialNumber, dbo.v_GS_COMPUTER_SYSTEM.Model0 and dbo.v_GS_OPERATING_SYSTEM.Caption0. Don't know how to get SP level in there off the top of my head, but I'm sure it's under GS_Operating_System or something similar.

     

     

     

    SELECT TOP (100) PERCENT dbo.v_R_System.Netbios_Name0, dbo.v_GS_SYSTEM_ENCLOSURE.ChassisTypes0,

    dbo.v_GS_NETWORK_ADAPTER.MACAddress0, dbo.v_GS_NETWORK_ADAPTER.Description0

    FROM dbo.v_R_System INNER JOIN

    dbo.v_GS_SYSTEM_ENCLOSURE ON dbo.v_R_System.ResourceID = dbo.v_GS_SYSTEM_ENCLOSURE.ResourceID INNER JOIN

    dbo.v_GS_NETWORK_ADAPTER ON dbo.v_R_System.ResourceID = dbo.v_GS_NETWORK_ADAPTER.ResourceID

    WHERE (((dbo.v_GS_SYSTEM_ENCLOSURE.ChassisTypes0 = '8') OR

    (dbo.v_GS_SYSTEM_ENCLOSURE.ChassisTypes0 = '9') OR

    (dbo.v_GS_SYSTEM_ENCLOSURE.ChassisTypes0 = '10') OR

    (dbo.v_GS_SYSTEM_ENCLOSURE.ChassisTypes0 = '14'))

    AND ((dbo.v_GS_NETWORK_ADAPTER.Description0 LIKE '%WIFI%') OR

    (dbo.v_GS_NETWORK_ADAPTER.Description0 LIKE '%Wireless%')) AND ((dbo.v_GS_NETWORK_ADAPTER.Description0 NOT LIKE '%Virtual%')))

    ORDER BY dbo.v_R_System.Netbios_Name0

  8. When you do a capture on the VM, do you remove the VMWare tools first (or not have them installed in the first place)?

    It's been a while, so I don't remember 100%. I don't think I had the tools installed for the build and capture. I had this same problem using a Hyper-V guest. No issues on a physical server. I just use a physical for the build and capture now.

  9. I will also ask the Net Admins to look one more time at the router. They said they had Helper turned on in the router.

    I don't know what your topology looks like so I'm going to make some assumptions.

     

    There's probably a distribution switch somewhere that has several VLAN interfaces that act as the default gateway for the VLAN various workstations sit in. Make sure the vlan interface for the vlan your test workstations are in have "ip-helper address xxx.xxx.xxx.xxx" commands applied. You can have multiple ip-helper addresses configured. One will be the DHCP server and the other will be the PSP.

     

    ip-helper addresses aren't required if the PXE client, DHCP server and PSP are all in the same subnet.

     

    Make sure the DHCP server doesn't have DHCP options 60,66 or 67 applied.

     

    Follow ibrafe's instructions for configuring a PSP.

  10. Hello All,

     

    I have similar problem with SCCM server. SCCM server is in first VLAN, DHCP in second and desktops in the third. On the router is configured IP Helper, router send DHCP packages to SCCM and to DHCP server.

    I was testing PXE boot from VLAN where is SCCM server and everything was OK. Problem is when I try PXE boot from VLAN for desktops.

    I recieve error:

    PXE-T04 Illegal operation error

    PXE-E36 Error recieved from TFTP server

    PXE-M0F Exiting Intel PXE ROM

     

    On SCCM server is installed Microsoft hotfix KB975710 and HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\WDSServer\Providers\WDSTFTP

    \MaximumBlockSize is set to 1024 (decimal).

     

    Have anybody idea where could be problem ?

    Thanks

    Maros

    Do you have DHCP option 60,66 or 67 configured on the DHCP server? You shouldn't.

  11. I am doing some proof of concept in our test lab for OSD in ConfigMgr 2007. Everything else works fine. There are no speed issues on the network. Other file transfers during WinPE have no issues. However, the capture sequence takes 3+ hours for a 3GB image.

     

    s6p115.jpg

     

    I've tried to capture using network shares on two different servers with the same results. Despite what the log suggests, I suspect there's a feature or configuration issue on the DP that the sequence is looking for but not finding. If you watch the network activity, it's long periods of nothing followed by a short burst of slow transfer. Eventually the .wim is created and I can deploy the image with no problems.

     

    The build and capture runs on an ESXi 5 VM. I'm going to try a build and capture on a physical server to eliminate some odd driver issue, but that seems unlikely since those same drivers don't have a problem transferring files in a non capture TS.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.