How to apply xNetworking xIPAddress Desired State Configuration (DSC)? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Come Celebrate our 10 Year Anniversary!Can you use SQLite 64 bit odbc from powershellpowershell 4.0: Desired State Configuration requirements for remote clientsWindows Desired State Configuration / DSC: Is there a simple, “flat” way to use them?Powershell DSC File copy - Workgroup machinesInstalling Web Deploy with Desired State Configuration (DSC) silently failsWinRM cannot connectError registering on premises node with Azure Automation DSC pull serverEmpty network configuration in Azure (networkconfig.xml)Desired State Configuration HTTPS Pull Site Doesn't WorkFailure joining on-prem to Azure DSC Automation (Response code: Unauthorized)

When a candle burns, why does the top of wick glow if bottom of flame is hottest?

What causes the direction of lightning flashes?

Fundamental Solution of the Pell Equation

Do I really need recursive chmod to restrict access to a folder?

Irreducible of finite Krull dimension implies quasi-compact?

What are the out-of-universe reasons for the references to Toby Maguire-era Spider-Man in ITSV

Why wasn't DOSKEY integrated with COMMAND.COM?

How to Make a Beautiful Stacked 3D Plot

Is grep documentation wrong?

Is it common practice to audition new musicians one-on-one before rehearsing with the entire band?

Do I really need to have a message in a novel to appeal to readers?

Do wooden building fires get hotter than 600°C?

Did MS DOS itself ever use blinking text?

What is the meaning of the new sigil in Game of Thrones Season 8 intro?

Dating a Former Employee

How to react to hostile behavior from a senior developer?

Trademark violation for app?

What does the "x" in "x86" represent?

For a new assistant professor in CS, how to build/manage a publication pipeline

Do square wave exist?

Is "Reachable Object" really an NP-complete problem?

Closed form of recurrent arithmetic series summation

If a VARCHAR(MAX) column is included in an index, is the entire value always stored in the index page(s)?

Amount of permutations on an NxNxN Rubik's Cube



How to apply xNetworking xIPAddress Desired State Configuration (DSC)?



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
Come Celebrate our 10 Year Anniversary!Can you use SQLite 64 bit odbc from powershellpowershell 4.0: Desired State Configuration requirements for remote clientsWindows Desired State Configuration / DSC: Is there a simple, “flat” way to use them?Powershell DSC File copy - Workgroup machinesInstalling Web Deploy with Desired State Configuration (DSC) silently failsWinRM cannot connectError registering on premises node with Azure Automation DSC pull serverEmpty network configuration in Azure (networkconfig.xml)Desired State Configuration HTTPS Pull Site Doesn't WorkFailure joining on-prem to Azure DSC Automation (Response code: Unauthorized)



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















Using Windows Server 2012 R2.



The goal is to set the IPv4 address of a server. As DSC correctly states in the verbose message below, the Expected [ip is] 192.168.0.203, [while the] actual [ip is] 192.168.0.205



The following error message:



Start-DscConfiguration -Path .BasicServer -Verbose -Wait -Force

VERBOSE: Perform operation 'Invoke CimMethod' with following parameters, ''methodName' = SendConfigurationApply,'className' =
MSFT_DSCLocalConfigurationManager,'namespaceName' = root/Microsoft/Windows/DesiredStateConfiguration'.
VERBOSE: An LCM method call arrived from computer ComputerName with user sid S-1-5-21-139086020-2308268882-217435134-1104.
VERBOSE: [ComputerName]: LCM: [ Start Set ]
VERBOSE: [ComputerName]: LCM: [ Start Resource ] [[xIPAddress]IPAddress]
VERBOSE: [ComputerName]: LCM: [ Start Test ] [[xIPAddress]IPAddress]
VERBOSE: [ComputerName]: [[xIPAddress]IPAddress] Checking the IPAddress ...
VERBOSE: [ComputerName]: [[xIPAddress]IPAddress] IPAddress not correct. Expected 192.168.0.203, actual 192.168.0.205
VERBOSE: [ComputerName]: LCM: [ End Test ] [[xIPAddress]IPAddress] in 0.0310 seconds.
VERBOSE: [ComputerName]: LCM: [ Start Set ] [[xIPAddress]IPAddress]
VERBOSE: [ComputerName]: [[xIPAddress]IPAddress] Checking the IPAddress ...
VERBOSE: [ComputerName]: [[xIPAddress]IPAddress] IPAddress not correct. Expected 192.168.0.203, actual 192.168.0.205
VERBOSE: [ComputerName]: [[xIPAddress]IPAddress] Setting IPAddress ...
VERBOSE: [ComputerName]: [[xIPAddress]IPAddress] Instance DefaultGateway already exists
VERBOSE: [ComputerName]: LCM: [ End Set ] [[xIPAddress]IPAddress] in 0.0620 seconds.
PowerShell DSC resource MSFT_xIPAddress failed to execute Set-TargetResource functionality with error message: Can not set or find valid IPAddress using
InterfaceAlias Ethernet and AddressFamily IPv4
+ CategoryInfo : InvalidOperation: (:) [], CimException
+ FullyQualifiedErrorId : ProviderOperationExecutionFailure
+ PSComputerName : ComputerName.domain.com

The SendConfigurationApply function did not succeed.
+ CategoryInfo : NotSpecified: (root/Microsoft/...gurationManager:String) [], CimException
+ FullyQualifiedErrorId : MI RESULT 1
+ PSComputerName : ComputerName.domain.com

VERBOSE: Operation 'Invoke CimMethod' complete.
VERBOSE: Time taken for configuration job to complete is 0.268 seconds


... is thrown when applying the following xNetworking DSC configuration:



Import-DscResource -Module xNetworking

Node $NodeFQDN
xIPAddress IPAddress
InterfaceAlias = "Ethernet"
IPAddress = $IPv4
AddressFamily = "IPV4"
DefaultGateway = '192.168.0.1'
SubnetMask = 24



where $IPv4 = '192.168.0.203'.



I have noticed that the Local Configuration Manager is capable of Test-DSCConfiguration, only unable to apply any IP related changes. I have tested this by running the configuration above on the system while the IP is already correctly set.



The message "Can not set or find valid IPAddress using InterfaceAlias Ethernet and AddressFamily IPv4" is confusing since the LCM has obviously been able to find the the adapter during the Test-DSCConfiguration operation.



Any clues as to why the Local Configuration Manager is unable to apply the configuration? What am I not seeing?










share|improve this question






























    1















    Using Windows Server 2012 R2.



    The goal is to set the IPv4 address of a server. As DSC correctly states in the verbose message below, the Expected [ip is] 192.168.0.203, [while the] actual [ip is] 192.168.0.205



    The following error message:



    Start-DscConfiguration -Path .BasicServer -Verbose -Wait -Force

    VERBOSE: Perform operation 'Invoke CimMethod' with following parameters, ''methodName' = SendConfigurationApply,'className' =
    MSFT_DSCLocalConfigurationManager,'namespaceName' = root/Microsoft/Windows/DesiredStateConfiguration'.
    VERBOSE: An LCM method call arrived from computer ComputerName with user sid S-1-5-21-139086020-2308268882-217435134-1104.
    VERBOSE: [ComputerName]: LCM: [ Start Set ]
    VERBOSE: [ComputerName]: LCM: [ Start Resource ] [[xIPAddress]IPAddress]
    VERBOSE: [ComputerName]: LCM: [ Start Test ] [[xIPAddress]IPAddress]
    VERBOSE: [ComputerName]: [[xIPAddress]IPAddress] Checking the IPAddress ...
    VERBOSE: [ComputerName]: [[xIPAddress]IPAddress] IPAddress not correct. Expected 192.168.0.203, actual 192.168.0.205
    VERBOSE: [ComputerName]: LCM: [ End Test ] [[xIPAddress]IPAddress] in 0.0310 seconds.
    VERBOSE: [ComputerName]: LCM: [ Start Set ] [[xIPAddress]IPAddress]
    VERBOSE: [ComputerName]: [[xIPAddress]IPAddress] Checking the IPAddress ...
    VERBOSE: [ComputerName]: [[xIPAddress]IPAddress] IPAddress not correct. Expected 192.168.0.203, actual 192.168.0.205
    VERBOSE: [ComputerName]: [[xIPAddress]IPAddress] Setting IPAddress ...
    VERBOSE: [ComputerName]: [[xIPAddress]IPAddress] Instance DefaultGateway already exists
    VERBOSE: [ComputerName]: LCM: [ End Set ] [[xIPAddress]IPAddress] in 0.0620 seconds.
    PowerShell DSC resource MSFT_xIPAddress failed to execute Set-TargetResource functionality with error message: Can not set or find valid IPAddress using
    InterfaceAlias Ethernet and AddressFamily IPv4
    + CategoryInfo : InvalidOperation: (:) [], CimException
    + FullyQualifiedErrorId : ProviderOperationExecutionFailure
    + PSComputerName : ComputerName.domain.com

    The SendConfigurationApply function did not succeed.
    + CategoryInfo : NotSpecified: (root/Microsoft/...gurationManager:String) [], CimException
    + FullyQualifiedErrorId : MI RESULT 1
    + PSComputerName : ComputerName.domain.com

    VERBOSE: Operation 'Invoke CimMethod' complete.
    VERBOSE: Time taken for configuration job to complete is 0.268 seconds


    ... is thrown when applying the following xNetworking DSC configuration:



    Import-DscResource -Module xNetworking

    Node $NodeFQDN
    xIPAddress IPAddress
    InterfaceAlias = "Ethernet"
    IPAddress = $IPv4
    AddressFamily = "IPV4"
    DefaultGateway = '192.168.0.1'
    SubnetMask = 24



    where $IPv4 = '192.168.0.203'.



    I have noticed that the Local Configuration Manager is capable of Test-DSCConfiguration, only unable to apply any IP related changes. I have tested this by running the configuration above on the system while the IP is already correctly set.



    The message "Can not set or find valid IPAddress using InterfaceAlias Ethernet and AddressFamily IPv4" is confusing since the LCM has obviously been able to find the the adapter during the Test-DSCConfiguration operation.



    Any clues as to why the Local Configuration Manager is unable to apply the configuration? What am I not seeing?










    share|improve this question


























      1












      1








      1








      Using Windows Server 2012 R2.



      The goal is to set the IPv4 address of a server. As DSC correctly states in the verbose message below, the Expected [ip is] 192.168.0.203, [while the] actual [ip is] 192.168.0.205



      The following error message:



      Start-DscConfiguration -Path .BasicServer -Verbose -Wait -Force

      VERBOSE: Perform operation 'Invoke CimMethod' with following parameters, ''methodName' = SendConfigurationApply,'className' =
      MSFT_DSCLocalConfigurationManager,'namespaceName' = root/Microsoft/Windows/DesiredStateConfiguration'.
      VERBOSE: An LCM method call arrived from computer ComputerName with user sid S-1-5-21-139086020-2308268882-217435134-1104.
      VERBOSE: [ComputerName]: LCM: [ Start Set ]
      VERBOSE: [ComputerName]: LCM: [ Start Resource ] [[xIPAddress]IPAddress]
      VERBOSE: [ComputerName]: LCM: [ Start Test ] [[xIPAddress]IPAddress]
      VERBOSE: [ComputerName]: [[xIPAddress]IPAddress] Checking the IPAddress ...
      VERBOSE: [ComputerName]: [[xIPAddress]IPAddress] IPAddress not correct. Expected 192.168.0.203, actual 192.168.0.205
      VERBOSE: [ComputerName]: LCM: [ End Test ] [[xIPAddress]IPAddress] in 0.0310 seconds.
      VERBOSE: [ComputerName]: LCM: [ Start Set ] [[xIPAddress]IPAddress]
      VERBOSE: [ComputerName]: [[xIPAddress]IPAddress] Checking the IPAddress ...
      VERBOSE: [ComputerName]: [[xIPAddress]IPAddress] IPAddress not correct. Expected 192.168.0.203, actual 192.168.0.205
      VERBOSE: [ComputerName]: [[xIPAddress]IPAddress] Setting IPAddress ...
      VERBOSE: [ComputerName]: [[xIPAddress]IPAddress] Instance DefaultGateway already exists
      VERBOSE: [ComputerName]: LCM: [ End Set ] [[xIPAddress]IPAddress] in 0.0620 seconds.
      PowerShell DSC resource MSFT_xIPAddress failed to execute Set-TargetResource functionality with error message: Can not set or find valid IPAddress using
      InterfaceAlias Ethernet and AddressFamily IPv4
      + CategoryInfo : InvalidOperation: (:) [], CimException
      + FullyQualifiedErrorId : ProviderOperationExecutionFailure
      + PSComputerName : ComputerName.domain.com

      The SendConfigurationApply function did not succeed.
      + CategoryInfo : NotSpecified: (root/Microsoft/...gurationManager:String) [], CimException
      + FullyQualifiedErrorId : MI RESULT 1
      + PSComputerName : ComputerName.domain.com

      VERBOSE: Operation 'Invoke CimMethod' complete.
      VERBOSE: Time taken for configuration job to complete is 0.268 seconds


      ... is thrown when applying the following xNetworking DSC configuration:



      Import-DscResource -Module xNetworking

      Node $NodeFQDN
      xIPAddress IPAddress
      InterfaceAlias = "Ethernet"
      IPAddress = $IPv4
      AddressFamily = "IPV4"
      DefaultGateway = '192.168.0.1'
      SubnetMask = 24



      where $IPv4 = '192.168.0.203'.



      I have noticed that the Local Configuration Manager is capable of Test-DSCConfiguration, only unable to apply any IP related changes. I have tested this by running the configuration above on the system while the IP is already correctly set.



      The message "Can not set or find valid IPAddress using InterfaceAlias Ethernet and AddressFamily IPv4" is confusing since the LCM has obviously been able to find the the adapter during the Test-DSCConfiguration operation.



      Any clues as to why the Local Configuration Manager is unable to apply the configuration? What am I not seeing?










      share|improve this question
















      Using Windows Server 2012 R2.



      The goal is to set the IPv4 address of a server. As DSC correctly states in the verbose message below, the Expected [ip is] 192.168.0.203, [while the] actual [ip is] 192.168.0.205



      The following error message:



      Start-DscConfiguration -Path .BasicServer -Verbose -Wait -Force

      VERBOSE: Perform operation 'Invoke CimMethod' with following parameters, ''methodName' = SendConfigurationApply,'className' =
      MSFT_DSCLocalConfigurationManager,'namespaceName' = root/Microsoft/Windows/DesiredStateConfiguration'.
      VERBOSE: An LCM method call arrived from computer ComputerName with user sid S-1-5-21-139086020-2308268882-217435134-1104.
      VERBOSE: [ComputerName]: LCM: [ Start Set ]
      VERBOSE: [ComputerName]: LCM: [ Start Resource ] [[xIPAddress]IPAddress]
      VERBOSE: [ComputerName]: LCM: [ Start Test ] [[xIPAddress]IPAddress]
      VERBOSE: [ComputerName]: [[xIPAddress]IPAddress] Checking the IPAddress ...
      VERBOSE: [ComputerName]: [[xIPAddress]IPAddress] IPAddress not correct. Expected 192.168.0.203, actual 192.168.0.205
      VERBOSE: [ComputerName]: LCM: [ End Test ] [[xIPAddress]IPAddress] in 0.0310 seconds.
      VERBOSE: [ComputerName]: LCM: [ Start Set ] [[xIPAddress]IPAddress]
      VERBOSE: [ComputerName]: [[xIPAddress]IPAddress] Checking the IPAddress ...
      VERBOSE: [ComputerName]: [[xIPAddress]IPAddress] IPAddress not correct. Expected 192.168.0.203, actual 192.168.0.205
      VERBOSE: [ComputerName]: [[xIPAddress]IPAddress] Setting IPAddress ...
      VERBOSE: [ComputerName]: [[xIPAddress]IPAddress] Instance DefaultGateway already exists
      VERBOSE: [ComputerName]: LCM: [ End Set ] [[xIPAddress]IPAddress] in 0.0620 seconds.
      PowerShell DSC resource MSFT_xIPAddress failed to execute Set-TargetResource functionality with error message: Can not set or find valid IPAddress using
      InterfaceAlias Ethernet and AddressFamily IPv4
      + CategoryInfo : InvalidOperation: (:) [], CimException
      + FullyQualifiedErrorId : ProviderOperationExecutionFailure
      + PSComputerName : ComputerName.domain.com

      The SendConfigurationApply function did not succeed.
      + CategoryInfo : NotSpecified: (root/Microsoft/...gurationManager:String) [], CimException
      + FullyQualifiedErrorId : MI RESULT 1
      + PSComputerName : ComputerName.domain.com

      VERBOSE: Operation 'Invoke CimMethod' complete.
      VERBOSE: Time taken for configuration job to complete is 0.268 seconds


      ... is thrown when applying the following xNetworking DSC configuration:



      Import-DscResource -Module xNetworking

      Node $NodeFQDN
      xIPAddress IPAddress
      InterfaceAlias = "Ethernet"
      IPAddress = $IPv4
      AddressFamily = "IPV4"
      DefaultGateway = '192.168.0.1'
      SubnetMask = 24



      where $IPv4 = '192.168.0.203'.



      I have noticed that the Local Configuration Manager is capable of Test-DSCConfiguration, only unable to apply any IP related changes. I have tested this by running the configuration above on the system while the IP is already correctly set.



      The message "Can not set or find valid IPAddress using InterfaceAlias Ethernet and AddressFamily IPv4" is confusing since the LCM has obviously been able to find the the adapter during the Test-DSCConfiguration operation.



      Any clues as to why the Local Configuration Manager is unable to apply the configuration? What am I not seeing?







      powershell dsc






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 27 '15 at 15:49







      user2704504

















      asked Mar 27 '15 at 14:50









      user2704504user2704504

      63




      63




















          1 Answer
          1






          active

          oldest

          votes


















          0














          The solution was to remove the default gateway from the configuration: DefaultGateway = '192.168.0.1'



          It appears that if there are any configurations in addition to the basic ones (IPAddress, InterfaceAlias, SubnetMask, AddressFamily), DSC will focus on the additional items and consider the basic ones as references. Consider the following:



          xIPAddress IPAddress 
          InterfaceAlias = 'Ethernet'
          IPAddress = '192.168.0.203'
          AddressFamily = 'IPV4'
          SubnetMask = 24



          The above configuration will set the IP address to 192.168.0.203.



           xIPAddress IPAddress 
          InterfaceAlias = 'Ethernet'
          IPAddress = '192.168.0.203'
          AddressFamily = 'IPV4'
          SubnetMask = 24
          DefaultGateway = '192.168.0.1'



          The above configuration will find an adapter named 'Ethernet' with an IP address of 192.168.0.203 and configure its DefaultGateway to 192.168.0.1. In my Question the Local Configuration Manager was unable to locate such an adapter. I was attempting to set the IP and the Gateway simultaneously.



          This discovery leads me to understand that setting the IP and configuring other adapter properties cannot be done in a single configuration. This kind of eliminates the idea of using a single (yes, only 1) script to configure a server end-to-end.



          Am I getting this right?



          p.s. I have also experienced configurations appending the new IP instead of replacing. Won't get into that now, but very interesting behavior...






          share|improve this answer























            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "2"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f678750%2fhow-to-apply-xnetworking-xipaddress-desired-state-configuration-dsc%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            The solution was to remove the default gateway from the configuration: DefaultGateway = '192.168.0.1'



            It appears that if there are any configurations in addition to the basic ones (IPAddress, InterfaceAlias, SubnetMask, AddressFamily), DSC will focus on the additional items and consider the basic ones as references. Consider the following:



            xIPAddress IPAddress 
            InterfaceAlias = 'Ethernet'
            IPAddress = '192.168.0.203'
            AddressFamily = 'IPV4'
            SubnetMask = 24



            The above configuration will set the IP address to 192.168.0.203.



             xIPAddress IPAddress 
            InterfaceAlias = 'Ethernet'
            IPAddress = '192.168.0.203'
            AddressFamily = 'IPV4'
            SubnetMask = 24
            DefaultGateway = '192.168.0.1'



            The above configuration will find an adapter named 'Ethernet' with an IP address of 192.168.0.203 and configure its DefaultGateway to 192.168.0.1. In my Question the Local Configuration Manager was unable to locate such an adapter. I was attempting to set the IP and the Gateway simultaneously.



            This discovery leads me to understand that setting the IP and configuring other adapter properties cannot be done in a single configuration. This kind of eliminates the idea of using a single (yes, only 1) script to configure a server end-to-end.



            Am I getting this right?



            p.s. I have also experienced configurations appending the new IP instead of replacing. Won't get into that now, but very interesting behavior...






            share|improve this answer



























              0














              The solution was to remove the default gateway from the configuration: DefaultGateway = '192.168.0.1'



              It appears that if there are any configurations in addition to the basic ones (IPAddress, InterfaceAlias, SubnetMask, AddressFamily), DSC will focus on the additional items and consider the basic ones as references. Consider the following:



              xIPAddress IPAddress 
              InterfaceAlias = 'Ethernet'
              IPAddress = '192.168.0.203'
              AddressFamily = 'IPV4'
              SubnetMask = 24



              The above configuration will set the IP address to 192.168.0.203.



               xIPAddress IPAddress 
              InterfaceAlias = 'Ethernet'
              IPAddress = '192.168.0.203'
              AddressFamily = 'IPV4'
              SubnetMask = 24
              DefaultGateway = '192.168.0.1'



              The above configuration will find an adapter named 'Ethernet' with an IP address of 192.168.0.203 and configure its DefaultGateway to 192.168.0.1. In my Question the Local Configuration Manager was unable to locate such an adapter. I was attempting to set the IP and the Gateway simultaneously.



              This discovery leads me to understand that setting the IP and configuring other adapter properties cannot be done in a single configuration. This kind of eliminates the idea of using a single (yes, only 1) script to configure a server end-to-end.



              Am I getting this right?



              p.s. I have also experienced configurations appending the new IP instead of replacing. Won't get into that now, but very interesting behavior...






              share|improve this answer

























                0












                0








                0







                The solution was to remove the default gateway from the configuration: DefaultGateway = '192.168.0.1'



                It appears that if there are any configurations in addition to the basic ones (IPAddress, InterfaceAlias, SubnetMask, AddressFamily), DSC will focus on the additional items and consider the basic ones as references. Consider the following:



                xIPAddress IPAddress 
                InterfaceAlias = 'Ethernet'
                IPAddress = '192.168.0.203'
                AddressFamily = 'IPV4'
                SubnetMask = 24



                The above configuration will set the IP address to 192.168.0.203.



                 xIPAddress IPAddress 
                InterfaceAlias = 'Ethernet'
                IPAddress = '192.168.0.203'
                AddressFamily = 'IPV4'
                SubnetMask = 24
                DefaultGateway = '192.168.0.1'



                The above configuration will find an adapter named 'Ethernet' with an IP address of 192.168.0.203 and configure its DefaultGateway to 192.168.0.1. In my Question the Local Configuration Manager was unable to locate such an adapter. I was attempting to set the IP and the Gateway simultaneously.



                This discovery leads me to understand that setting the IP and configuring other adapter properties cannot be done in a single configuration. This kind of eliminates the idea of using a single (yes, only 1) script to configure a server end-to-end.



                Am I getting this right?



                p.s. I have also experienced configurations appending the new IP instead of replacing. Won't get into that now, but very interesting behavior...






                share|improve this answer













                The solution was to remove the default gateway from the configuration: DefaultGateway = '192.168.0.1'



                It appears that if there are any configurations in addition to the basic ones (IPAddress, InterfaceAlias, SubnetMask, AddressFamily), DSC will focus on the additional items and consider the basic ones as references. Consider the following:



                xIPAddress IPAddress 
                InterfaceAlias = 'Ethernet'
                IPAddress = '192.168.0.203'
                AddressFamily = 'IPV4'
                SubnetMask = 24



                The above configuration will set the IP address to 192.168.0.203.



                 xIPAddress IPAddress 
                InterfaceAlias = 'Ethernet'
                IPAddress = '192.168.0.203'
                AddressFamily = 'IPV4'
                SubnetMask = 24
                DefaultGateway = '192.168.0.1'



                The above configuration will find an adapter named 'Ethernet' with an IP address of 192.168.0.203 and configure its DefaultGateway to 192.168.0.1. In my Question the Local Configuration Manager was unable to locate such an adapter. I was attempting to set the IP and the Gateway simultaneously.



                This discovery leads me to understand that setting the IP and configuring other adapter properties cannot be done in a single configuration. This kind of eliminates the idea of using a single (yes, only 1) script to configure a server end-to-end.



                Am I getting this right?



                p.s. I have also experienced configurations appending the new IP instead of replacing. Won't get into that now, but very interesting behavior...







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 27 '15 at 16:45









                user2704504user2704504

                63




                63



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Server Fault!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f678750%2fhow-to-apply-xnetworking-xipaddress-desired-state-configuration-dsc%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

                    Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

                    What should I write in an apology letter, since I have decided not to join a company after accepting an offer letterShould I keep looking after accepting a job offer?What should I do when I've been verbally told I would get an offer letter, but still haven't gotten one after 4 weeks?Do I accept an offer from a company that I am not likely to join?New job hasn't confirmed starting date and I want to give current employer as much notice as possibleHow should I address my manager in my resignation letter?HR delayed background verification, now jobless as resignedNo email communication after accepting a formal written offer. How should I phrase the call?What should I do if after receiving a verbal offer letter I am informed that my written job offer is put on hold due to some internal issues?Should I inform the current employer that I am about to resign within 1-2 weeks since I have signed the offer letter and waiting for visa?What company will do, if I send their offer letter to another company