• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. jeremy mcflight
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 7
    • Best 1
    • Controversial 0
    • Groups 0

    jeremy mcflight

    @jeremy mcflight

    1
    Reputation
    314
    Profile views
    7
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    jeremy mcflight Unfollow Follow

    Best posts made by jeremy mcflight

    • RE: Any ideas? - Unable to upload/download images to the new Fog Server 1.2.0 / Ubuntu 14.04 LTS

      I have used this configuration and it works! Link from Wayne Workman! Kudos to you my brother! Thanks!

      Example 1

      Here’s a complete configuration example where TFTP and DNS is on the same Server. No router is defined in this configuration but can easily be added by changing X.X.X.X and un-commenting the line.

      option space PXE;
      option PXE.mtftp-ip    code 1 = ip-address;
      option PXE.mtftp-cport code 2 = unsigned integer 16;
      option PXE.mtftp-sport code 3 = unsigned integer 16;
      option PXE.mtftp-tmout code 4 = unsigned integer 8;
      option PXE.mtftp-delay code 5 = unsigned integer 8;
      option arch code 93 = unsigned integer 16; # RFC4578
      
      use-host-decl-names on;
      ddns-update-style interim;
      ignore client-updates;
      next-server 192.168.1.1;
      authoritative;
      
      subnet 192.168.1.0 netmask 255.255.255.0 {
              option subnet-mask              255.255.255.0;
              range dynamic-bootp 192.168.1.10 192.168.1.254;
              default-lease-time 21600;
              max-lease-time 43200;
              option domain-name-servers      192.168.1.1;
          #option routers      x.x.x.x;
       
          class "UEFI-32-1" {
          match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00006";
          filename "i386-efi/ipxe.efi";
          }
      
          class "UEFI-32-2" {
          match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00002";
           filename "i386-efi/ipxe.efi";
          }
      
          class "UEFI-64-1" {
          match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00007";
           filename "ipxe.efi";
          }
      
          class "UEFI-64-2" {
          match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00008";
          filename "ipxe.efi";
          }
      
          class "UEFI-64-3" {
          match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00009";
           filename "ipxe.efi";
          }
      
          class "Legacy" {
          match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00000";
          filename "undionly.kkpxe";
          }
      }
      
      posted in FOG Problems
      jeremy mcflightJ
      jeremy mcflight

    Latest posts made by jeremy mcflight

    • How to remove password login when imaging.

      Hi everyone, I have a Fog 1.2.0 server running Ubuntu 14.04 LTS.

      I have a stupid question.

      I would like to seek the group’s help if anyone can tell me the “step by step” process in removing the password login every time I image a machine? I have attached the issue that I am actually getting.

      Thanks in advance for any help!

      !0_1460047766279_fog loign 2.jpg

      posted in FOG Problems
      jeremy mcflightJ
      jeremy mcflight
    • RE: Error message when downloading an image - "This is not a Partclone image."

      Update: For a strange reason - I have deleted the previous image file, created a new one , re-uploaded the new image, changed back the Deploy method to “PartClone” - and now it’s working fine! However, I still want to thank everyone for giving me a hand. You guys rock!

      posted in FOG Problems
      jeremy mcflightJ
      jeremy mcflight
    • RE: Error message when downloading an image - "This is not a Partclone image."

      I saw that you have moved this topic - Thank you.

      Anyway, I have a Ubuntu 14.04 LTS / Fog 1.2.0 Kernel 3.19.3. So far, I have tried changing it from Partclone to PartImage - re-done the image - with no success.

      posted in FOG Problems
      jeremy mcflightJ
      jeremy mcflight
    • Error message when downloading an image - "This is not a Partclone image."

      Hi All - anyone here encountered this issue I am having? This is a Windows XP image that I uploaded with no error but when I tried downloading it gives me this error message.

      posted in FOG Problems
      jeremy mcflightJ
      jeremy mcflight
    • RE: Any ideas? - Unable to upload/download images to the new Fog Server 1.2.0 / Ubuntu 14.04 LTS

      I have used this configuration and it works! Link from Wayne Workman! Kudos to you my brother! Thanks!

      Example 1

      Here’s a complete configuration example where TFTP and DNS is on the same Server. No router is defined in this configuration but can easily be added by changing X.X.X.X and un-commenting the line.

      option space PXE;
      option PXE.mtftp-ip    code 1 = ip-address;
      option PXE.mtftp-cport code 2 = unsigned integer 16;
      option PXE.mtftp-sport code 3 = unsigned integer 16;
      option PXE.mtftp-tmout code 4 = unsigned integer 8;
      option PXE.mtftp-delay code 5 = unsigned integer 8;
      option arch code 93 = unsigned integer 16; # RFC4578
      
      use-host-decl-names on;
      ddns-update-style interim;
      ignore client-updates;
      next-server 192.168.1.1;
      authoritative;
      
      subnet 192.168.1.0 netmask 255.255.255.0 {
              option subnet-mask              255.255.255.0;
              range dynamic-bootp 192.168.1.10 192.168.1.254;
              default-lease-time 21600;
              max-lease-time 43200;
              option domain-name-servers      192.168.1.1;
          #option routers      x.x.x.x;
       
          class "UEFI-32-1" {
          match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00006";
          filename "i386-efi/ipxe.efi";
          }
      
          class "UEFI-32-2" {
          match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00002";
           filename "i386-efi/ipxe.efi";
          }
      
          class "UEFI-64-1" {
          match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00007";
           filename "ipxe.efi";
          }
      
          class "UEFI-64-2" {
          match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00008";
          filename "ipxe.efi";
          }
      
          class "UEFI-64-3" {
          match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00009";
           filename "ipxe.efi";
          }
      
          class "Legacy" {
          match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00000";
          filename "undionly.kkpxe";
          }
      }
      
      posted in FOG Problems
      jeremy mcflightJ
      jeremy mcflight
    • RE: Any ideas? - Unable to upload/download images to the new Fog Server 1.2.0 / Ubuntu 14.04 LTS

      ISC DHCP - Thanks for the link - I will give it a try and will keep you posted.

      posted in FOG Problems
      jeremy mcflightJ
      jeremy mcflight
    • Any ideas? - Unable to upload/download images to the new Fog Server 1.2.0 / Ubuntu 14.04 LTS

      Hi All - I have an issue uploading an image in my new fog server. What happens is - the PC (Optiplex 3020) reboots after the “configuring net 0 x.x.x.x” shows up. I have a dell 2950 server. I hope someone has a resolution for this one - Thanks much!

      posted in FOG Problems
      jeremy mcflightJ
      jeremy mcflight